Aggregate Credits
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits'import requests
url = "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"cast": [
{
"adult": false,
"gender": 1,
"id": 2363904,
"known_for_department": "Acting",
"name": "Shion Wakayama",
"order": 0,
"original_name": "若山詩音",
"popularity": 29.234,
"profile_path": "/b697ggFreuliEfl4TjLgxhJCQXr.jpg",
"roles": [
{
"character": "Momo Ayase (voice)",
"credit_id": "657d6dd61da7a6076d2a42d6",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 2,
"id": 1256603,
"known_for_department": "Acting",
"name": "Natsuki Hanae",
"order": 1,
"original_name": "花江夏樹",
"popularity": 49.726,
"profile_path": "/alTb0DlcPIbcwM08WSmxFai58sd.jpg",
"roles": [
{
"character": "Ken 'Okarun' Takakura (voice)",
"credit_id": "657d6e195c5cc806b8960c33",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 1,
"id": 65510,
"known_for_department": "Acting",
"name": "Mayumi Tanaka",
"order": 2,
"original_name": "田中真弓",
"popularity": 62.954,
"profile_path": "/by4t1tYtEXsfbFj9TvOjozBmQla.jpg",
"roles": [
{
"character": "Turbo Granny (voice)",
"credit_id": "670ad44cb15d97b1a93c2c0a",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 24651,
"known_for_department": "Acting",
"name": "Nana Mizuki",
"order": 3,
"original_name": "水樹奈々",
"popularity": 49.396,
"profile_path": "/1h4C1kz8mziHmiB91MliTDHwgoh.jpg",
"roles": [
{
"character": "Seiko (Dodoria Santa) (voice)",
"credit_id": "671a7b406d6b705dc8713514",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 992869,
"known_for_department": "Acting",
"name": "Ayane Sakura",
"order": 519,
"original_name": "佐倉綾音",
"popularity": 58.232,
"profile_path": "/yPbTmntASE9psPIMhNGU5oo6vIH.jpg",
"roles": [
{
"character": "Aira Shiratori (voice)",
"credit_id": "6723c3ab1d0b571b8a5c5870",
"episode_count": 7
}
],
"total_episode_count": 7
},
{
"adult": false,
"gender": 1,
"id": 2208367,
"known_for_department": "Acting",
"name": "Kaori Maeda",
"order": 500,
"original_name": "前田佳織里",
"popularity": 29.166,
"profile_path": "/i1yTlI3z5BvIuXQ26XtJ0PyLEAX.jpg",
"roles": [
{
"character": "Miko (voice)",
"credit_id": "66ff71bee480149146850afc",
"episode_count": 6
}
],
"total_episode_count": 6
},
{
"adult": false,
"gender": 1,
"id": 1647636,
"known_for_department": "Acting",
"name": "Miyu Tomita",
"order": 501,
"original_name": "富田美憂",
"popularity": 38.374,
"profile_path": "/rSR17l4HdchLkhpRuAZbGbXNmUS.jpg",
"roles": [
{
"character": "Muko (voice)",
"credit_id": "66ff71c8e480149146850b00",
"episode_count": 5
}
],
"total_episode_count": 5
},
{
"adult": false,
"gender": 1,
"id": 1762671,
"known_for_department": "Acting",
"name": "Aya Yamane",
"order": 520,
"original_name": "山根綺",
"popularity": 21.728,
"profile_path": "/va0XORY6VchoceyqywJ4KxsVN5s.jpg",
"roles": [
{
"character": "Tsubame (voice)",
"credit_id": "6723c48318827a9329f1b63b",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2649314,
"known_for_department": "Acting",
"name": "Natsu Yorita",
"order": 521,
"original_name": "依田菜津",
"popularity": 18.774,
"profile_path": "/gOLAf6UJYz2YTobH00jQHNzSLqT.jpg",
"roles": [
{
"character": "Anzu (voice)",
"credit_id": "6723c53818827a9329f1b699",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2261331,
"known_for_department": "Acting",
"name": "Koji Seki",
"order": 527,
"original_name": "関幸司",
"popularity": 9.879,
"profile_path": "/lOPiuf6BGq3wpXFiVc5o6jvFu3J.jpg",
"roles": [
{
"character": "TV Station Producer (voice)",
"credit_id": "6711ba4725c70b8b1d678dff",
"episode_count": 1
},
{
"character": "Male Client (voice)",
"credit_id": "671a7c86e833d92ef05fe5f1",
"episode_count": 1
},
{
"character": "Male Teacher (voice)",
"credit_id": "675babfa369ac03099eb062e",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2724028,
"known_for_department": "Acting",
"name": "Yukiko Motoyoshi",
"order": 528,
"original_name": "元吉有希子",
"popularity": 7.157,
"profile_path": "/1v2NKcXE0i5YtMHnYsmPQrZRUss.jpg",
"roles": [
{
"character": "Female Servant (voice)",
"credit_id": "6711bb4c8e844657b7fae865",
"episode_count": 1
},
{
"character": "Receptionist (voice)",
"credit_id": "671a7c0b4542e371fe0a56c2",
"episode_count": 1
},
{
"character": "Female Student A (voice)",
"credit_id": "675bac5316e963ddaf0dd525",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 84507,
"known_for_department": "Acting",
"name": "Kazuya Nakai",
"order": 533,
"original_name": "中井和哉",
"popularity": 45.963,
"profile_path": "/78PKViY7brjF3AJI8h3tXyUyYT7.jpg",
"roles": [
{
"character": "Serpoians (voice)",
"credit_id": "670ad345bbb1a9e81c61ade8",
"episode_count": 2
},
{
"character": "Serpoian A / Serpoian B / Serpoian C (voice)",
"credit_id": "6763b340e14e3bcfa74a4383",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 90567,
"known_for_department": "Acting",
"name": "Tomokazu Seki",
"order": 536,
"original_name": "関智一",
"popularity": 33.265,
"profile_path": "/jGQC9KkfNMh2wBgizw81GLX2KN2.jpg",
"roles": [
{
"character": "Dover Demon (voice)",
"credit_id": "673f806b4dec1f98b29bf3b0",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 1324666,
"known_for_department": "Acting",
"name": "Kaito Ishikawa",
"order": 541,
"original_name": "石川界人",
"popularity": 46.169,
"profile_path": "/fzjIkotjUHHs3wgftM9tqdsG8ph.jpg",
"roles": [
{
"character": "Jin 'Jiji' Enjouji (voice)",
"credit_id": "6751fddcab6cc3a4c8fc6cb9",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2934417,
"known_for_department": "Acting",
"name": "Koseki Kogure",
"order": 527,
"original_name": "木暮晃石",
"popularity": 6.791,
"profile_path": "/a4nQ5seWDMMSDzW37MkRpk0ZnTE.jpg",
"roles": [
{
"character": "Student C (voice)",
"credit_id": "6748ba05169339d34cf114c1",
"episode_count": 1
},
{
"character": "Couple Man (voice)",
"credit_id": "671a7b994542e371fe0a56a7",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 101913,
"known_for_department": "Acting",
"name": "Kikuko Inoue",
"order": 529,
"original_name": "井上喜久子",
"popularity": 20.939,
"profile_path": "/pPxGWy53FgYSC79zmxblmHe0gI3.jpg",
"roles": [
{
"character": "Acrobatic Silky (voice)",
"credit_id": "67376c8580fda6e3e37462b0",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 3594209,
"known_for_department": "Acting",
"name": "Tomoya Ito",
"order": 533,
"original_name": "井藤智哉",
"popularity": 0.892,
"profile_path": "/kVrJkr313KH7VgIJDzLnC9WFHd4.jpg",
"roles": [
{
"character": "Male Student D (voice)",
"credit_id": "6723c781826fe5799cc4e9c9",
"episode_count": 1
},
{
"character": "Student A (voice)",
"credit_id": "6748b9e2d44c3bfa4618cde1",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 144655,
"known_for_department": "Acting",
"name": "Tomokazu Sugita",
"order": 552,
"original_name": "杉田智和",
"popularity": 37.34,
"profile_path": "/cv5zuPZySNsHXu24pjKLYCRzJ2J.jpg",
"roles": [
{
"character": "Taro (voice)",
"credit_id": "675bab11ab17a5e30487b005",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 129960,
"known_for_department": "Acting",
"name": "Fumi Hirano",
"order": 553,
"original_name": "平野文",
"popularity": 23.982,
"profile_path": "/nP3c7cxj4iCHKCrlJtxtnsF3prS.jpg",
"roles": [
{
"character": "Hana (voice)",
"credit_id": "675bab33b65c1a19cb964705",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 1991244,
"known_for_department": "Acting",
"name": "Ryunosuke Watanuki",
"order": 502,
"original_name": "綿貫竜之介",
"popularity": 21.168,
"profile_path": "/cJBw6vHWD4u9dAdBFA7CUqKUj9A.jpg",
"roles": [
{
"character": "Momo's Boyfriend (voice)",
"credit_id": "66ff71cf7830c1301e7ca9af",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3106016,
"known_for_department": "Acting",
"name": "Hikaru Tanaka",
"order": 503,
"original_name": "田中光",
"popularity": 9.512,
"profile_path": "/jKLQhWJ9ZW32TKK9NN3pksf39XX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "66ff71d67830c1301e7ca9b2",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4979890,
"known_for_department": "Acting",
"name": "Seitaro Taniguchi",
"order": 504,
"original_name": "谷口誠太郎",
"popularity": 0.001,
"profile_path": "/aPLluDuanhSK9qCtlQhPNDavO0l.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "66ff71df6fc74e5756f7f433",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3271011,
"known_for_department": "Acting",
"name": "Satomi Kobashi",
"order": 505,
"original_name": "小橋里美",
"popularity": 1.093,
"profile_path": "/m8JQQVWvdchgot7L7WSc2556u2F.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71e76fc74e5756f7f439",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2862191,
"known_for_department": "Acting",
"name": "Mayuko Kazama",
"order": 506,
"original_name": "風間万裕子",
"popularity": 15.951,
"profile_path": "/lWRGpyrrbq9KmBZc1yjeS1EwXkd.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71ef6fc74e5756f7f440",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 126690,
"known_for_department": "Acting",
"name": "Ryuuzaburou Ootomo",
"order": 507,
"original_name": "大友龍三郎",
"popularity": 24.872,
"profile_path": "/fk3ebYlTjILTXkzJNvOi3SRUNb6.jpg",
"roles": [
{
"character": "Flatwoods Monster (voice)",
"credit_id": "670875df6adf6620212ff03c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3188064,
"known_for_department": "Acting",
"name": "Hayato Kashiwazaki",
"order": 509,
"original_name": "柏崎隼史",
"popularity": 1.45,
"profile_path": "/zNEION3yYTdX7QD0GwPHpVBoquh.jpg",
"roles": [
{
"character": "Shoma (voice)",
"credit_id": "6711ba0f1f0ea4714edbd801",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3302611,
"known_for_department": "Acting",
"name": "Naoki Tamanoi",
"order": 511,
"original_name": "玉野井直樹",
"popularity": 1.071,
"profile_path": "/7ggnBHTwhybh9EsBisu3lYuJSdN.jpg",
"roles": [
{
"character": "Taxi Driver (voice)",
"credit_id": "6711baed25c70b8b1d678e39",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3484939,
"known_for_department": "Acting",
"name": "Shitan En",
"order": 513,
"original_name": "閻子丹",
"popularity": 4.221,
"profile_path": "/jJm7ILHumo0vy2JNotAdGAQcigt.jpg",
"roles": [
{
"character": "Assistant Producer (voice)",
"credit_id": "6713fd8ac6e304096195f363",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 5010097,
"known_for_department": "Acting",
"name": "Emi Taniguchi",
"order": 514,
"original_name": "谷口恵美",
"popularity": 0.001,
"profile_path": "/tpHBOA22CCkNZk09yiLEY7T78gL.jpg",
"roles": [
{
"character": "TV Announcer (voice)",
"credit_id": "6713fe832bbba65f7b10ebe1",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2882581,
"known_for_department": "Acting",
"name": "Ruka Yashiro",
"order": 516,
"original_name": "屋代瑠花",
"popularity": 1.381,
"profile_path": "/wNJzkcMjHL6mUtk5Qu2PjG33J35.jpg",
"roles": [
{
"character": "Couple Woman (voice)",
"credit_id": "671a7bc62685cb6563c0afb9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1779969,
"known_for_department": "Acting",
"name": "Masumi Tazawa",
"order": 522,
"original_name": "田澤茉純",
"popularity": 4.54,
"profile_path": "/p0Qld9ey2zZEL2edgeWAY9djisQ.jpg",
"roles": [
{
"character": "Momo's Friend A (voice)",
"credit_id": "6723c5af82658aeeac92724f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3049705,
"known_for_department": "Acting",
"name": "Konomi Inagaki",
"order": 523,
"original_name": "稲垣好",
"popularity": 6.818,
"profile_path": "/qYizWDjykF0j5foMvKGYyRta037.jpg",
"roles": [
{
"character": "Momo's Friend B (voice)",
"credit_id": "6723c5e482658aeeac927280",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5033671,
"known_for_department": "Acting",
"name": "Hoshino Kouki",
"order": 524,
"original_name": "星野煌季",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "6723c6bd826fe5799cc4e967",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2800663,
"known_for_department": "Acting",
"name": "Koki Koyasu",
"order": 525,
"original_name": "子安光樹",
"popularity": 3.422,
"profile_path": "/rTY2DUQgPPwEXAlID8FmIZxIRAX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "6723c72bfe2a8a011ed755d7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3288856,
"known_for_department": "Acting",
"name": "Kouki Osuzu",
"order": 526,
"original_name": "大鈴功起",
"popularity": 5.253,
"profile_path": "/999LucUsQrPAnsABM1skmoFvOGP.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "6723c74e003c4b5b5b645a3e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3195937,
"known_for_department": "Acting",
"name": "Tasuku Kaito",
"order": 527,
"original_name": "海渡翼",
"popularity": 4.183,
"profile_path": "/eDtru6RxBnCtuYtU2mIXidKekJv.jpg",
"roles": [
{
"character": "Male Student C (voice)",
"credit_id": "6723c76428bd966c9e67338f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2378092,
"known_for_department": "Acting",
"name": "Shohei Komatsu",
"order": 530,
"original_name": "小松昌平",
"popularity": 6.792,
"profile_path": "/quFQzZn6p2IbKAmNoDs6woDCJOF.jpg",
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "67376d3bba29a051b3cc9741",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2572594,
"known_for_department": "Acting",
"name": "Tomohiro Ohmachi",
"order": 531,
"original_name": "大町知広",
"popularity": 6.345,
"profile_path": "/mku85ql9LtijMRrhqLbYK8WBEFJ.jpg",
"roles": [
{
"character": "Male Student 1 (voice)",
"credit_id": "67376d57e05823bd9c7c795d",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4111641,
"known_for_department": "Acting",
"name": "Kyohei Zenyoji",
"order": 532,
"original_name": "善養寺恭平",
"popularity": 1.193,
"profile_path": "/qoIC02REXgfS8cNNhdT4mwYnDks.jpg",
"roles": [
{
"character": "Male Student 2 (voice)",
"credit_id": "67376d6b80fda6e3e3746314",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1597103,
"known_for_department": "Acting",
"name": "Hina Kino",
"order": 533,
"original_name": "木野日菜",
"popularity": 29.128,
"profile_path": "/iwq0VvY3q4MPfn5ZTjsthhNcuyd.jpg",
"roles": [
{
"character": "Akusara's Daughter (voice)",
"credit_id": "67376e61ce49410032c1fc34",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1517732,
"known_for_department": "Acting",
"name": "Daisuke Takahashi",
"order": 534,
"original_name": "高橋大輔",
"popularity": 10.217,
"profile_path": "/sDuT3eITAUxkJ5tTjxGxokC19pH.jpg",
"roles": [
{
"character": "Aira's Father (voice)",
"credit_id": "67376eedce49410032c1fc74",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2923370,
"known_for_department": "Acting",
"name": "Seiyuu Fujiwara",
"order": 535,
"original_name": "藤原聖侑",
"popularity": 18.43,
"profile_path": "/fIM22LFxjzGbN1ZlmULeRHEKU9v.jpg",
"roles": [
{
"character": "Man (voice)",
"credit_id": "67376f57ba29a051b3cc9817",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3985900,
"known_for_department": "Acting",
"name": "Takeshi Miyajima",
"order": 537,
"original_name": "宮島岳史",
"popularity": 0.001,
"profile_path": "/webfozdOnWN4xuyQcZYptiH9Xex.jpg",
"roles": [
{
"character": "Teacher (voice)",
"credit_id": "673f80f8304efc9ad121229b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2359648,
"known_for_department": "Acting",
"name": "Tatsumaru Tachibana",
"order": 539,
"original_name": "橘龍丸",
"popularity": 4.265,
"profile_path": "/eShhW1W22SQuUwRaONnpzEZ5w6E.jpg",
"roles": [
{
"character": "Student B (voice)",
"credit_id": "6748b9f3cdece050080abaec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1324931,
"known_for_department": "Acting",
"name": "Naomi Ohzora",
"order": 542,
"original_name": "大空直美",
"popularity": 37.56,
"profile_path": "/qygKX6EtfvPdnPsMM0d41mPztP2.jpg",
"roles": [
{
"character": "Chiquitita (voice)",
"credit_id": "6751fe7372d1a8a59c29910c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1222054,
"known_for_department": "Acting",
"name": "Chiaki Takahashi",
"order": 543,
"original_name": "たかはし智秋",
"popularity": 27.762,
"profile_path": "/A0iBTBEYncQ3K9QVQAps0stDjaS.jpg",
"roles": [
{
"character": "Mr. Queen (voice)",
"credit_id": "6752001ffa107dc4ed403b0b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2603963,
"known_for_department": "Acting",
"name": "Kousuke Echigoya",
"order": 544,
"original_name": "越後屋コースケ",
"popularity": 11.915,
"profile_path": "/gZSWmroax3RdzlFgnBBvbgA6pMY.jpg",
"roles": [
{
"character": "Male Teacher (voice)",
"credit_id": "675200581234b99a9473f1df",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4980600,
"known_for_department": "Acting",
"name": "Kureha Maki",
"order": 545,
"original_name": "牧紅葉",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate A (voice)",
"credit_id": "675200cb72d1a8a59c29911a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2679566,
"known_for_department": "Acting",
"name": "Ayano Shibuya",
"order": 546,
"original_name": "渋谷彩乃",
"popularity": 5.905,
"profile_path": "/aXHt8uLQuKItanBKjj7X4sIVhpO.jpg",
"roles": [
{
"character": "Classmate B (voice)",
"credit_id": "675200f01234b99a9473f208",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2860044,
"known_for_department": "Acting",
"name": "Eriko Kadokura",
"order": 547,
"original_name": "角倉英里子",
"popularity": 1.805,
"profile_path": "/kZFvhlMq8oh59bIDpOOuzb6Du8M.jpg",
"roles": [
{
"character": "Classmate C (voice)",
"credit_id": "6752010b1234b99a9473f213",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2369259,
"known_for_department": "Acting",
"name": "Rikuya Yasuda",
"order": 548,
"original_name": "安田陸矢",
"popularity": 11.342,
"profile_path": "/eZCxGqkEibJkUEhLO9Xp4zNDlY3.jpg",
"roles": [
{
"character": "Classmate D (voice)",
"credit_id": "6752012980e5b8f0a7561afc",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3702222,
"known_for_department": "Acting",
"name": "Daichi Fujiwara",
"order": 549,
"original_name": "藤原大智",
"popularity": 2.162,
"profile_path": "/fk3ImXh6LGtTYfBuxTKHEOwvOhl.jpg",
"roles": [
{
"character": "Classmate E (voice)",
"credit_id": "675201464624397fa81162cb",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2644897,
"known_for_department": "Acting",
"name": "Serika Hiromatsu",
"order": 550,
"original_name": "弘松芹香",
"popularity": 4.413,
"profile_path": "/tZdFouOrpbrWiE42HMFDOrA4YJn.jpg",
"roles": [
{
"character": "Classmate F (voice)",
"credit_id": "675201f0ab37fcd3e8851368",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2530103,
"known_for_department": "Acting",
"name": "Hayato Furusawa",
"order": 551,
"original_name": "古沢勇人",
"popularity": 0.475,
"profile_path": "/qpG5NxjphFb8ud2u6v1nkXmQAF0.jpg",
"roles": [
{
"character": "Classmate G (voice)",
"credit_id": "6752021e8e033e9136dc74c7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3094118,
"known_for_department": "Acting",
"name": "Koji Marunaka",
"order": 555,
"original_name": "丸中康司",
"popularity": 1.264,
"profile_path": "/jlUXRtCnLJIuDGRurCGtWHvfgnY.jpg",
"roles": [
{
"character": "English Teacher (voice)",
"credit_id": "675bac2c591e61e1b0bf0ecf",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2481143,
"known_for_department": "Acting",
"name": "Kanon Amane",
"order": 557,
"original_name": "天希かのん",
"popularity": 4.827,
"profile_path": "/8DvXAQVIpW5XJbkVNCrMS6IcO4m.jpg",
"roles": [
{
"character": "Female Student B (voice)",
"credit_id": "675bac68b65c1a19cb964747",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1243817,
"known_for_department": "Acting",
"name": "Shirou Saitou",
"order": 559,
"original_name": "斎藤志郎",
"popularity": 4.015,
"profile_path": "/yJSrzULl9EuXI25E8REdIPY1Lkm.jpg",
"roles": [
{
"character": "Kito Kazuichi (voice)",
"credit_id": "676460168dc046b915a4fc3a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2381706,
"known_for_department": "Acting",
"name": "Shunichi Maki",
"order": 560,
"original_name": "真木駿一",
"popularity": 6.561,
"profile_path": "/ivESgftEqDgcHQlsbKdW9DYwuH7.jpg",
"roles": [
{
"character": "Kito Jumaniel (voice)",
"credit_id": "6764605d0c865f24891f6544",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2866200,
"known_for_department": "Acting",
"name": "Michitake Kikuchi",
"order": 561,
"original_name": "菊池通武",
"popularity": 4.763,
"profile_path": "/pi49MQHk9jnzJ9altMiiZVCOWIA.jpg",
"roles": [
{
"character": "Kito Norihikoichi (voice)",
"credit_id": "6764611984c93fe868ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3110539,
"known_for_department": "Acting",
"name": "Yusuke Sasaki",
"order": 562,
"original_name": "佐々木祐介",
"popularity": 1.24,
"profile_path": "/1PTlnypdfoquT6aYz0QWbxIoWPx.jpg",
"roles": [
{
"character": "Kito Jurian (voice)",
"credit_id": "676461810c865f24891f65ec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2787672,
"known_for_department": "Acting",
"name": "Yuki Tamai",
"order": 563,
"original_name": "玉井勇輝",
"popularity": 8.34,
"profile_path": "/jpkR0WMXEveDJq7TYBvOLKrNXSl.jpg",
"roles": [
{
"character": "Kito Jugenna (voice)",
"credit_id": "676461f40c865f24891f6610",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5129842,
"known_for_department": "Acting",
"name": "Mahana Yamasaki",
"order": 564,
"original_name": "山崎真花",
"popularity": 0.02,
"profile_path": "/7wUBIU2DJYiz2twQ2wJ0o5L1ukv.jpg",
"roles": [
{
"character": "Woman A (voice)",
"credit_id": "67646261b05011d6f3a4faf9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4776137,
"known_for_department": "Acting",
"name": "Azusa Tachibana",
"order": 565,
"original_name": "橘杏咲",
"popularity": 0.001,
"profile_path": "/kvDRRBhAyuXChu1sgBViEQpoBka.jpg",
"roles": [
{
"character": "Woman B (voice)",
"credit_id": "676462748856704350ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2812912,
"known_for_department": "Acting",
"name": "Shogo Sakata",
"order": 566,
"original_name": "坂田将吾",
"popularity": 17.43,
"profile_path": "/fRRPNBz3OCNRdmLdUTdpq7dGqxM.jpg",
"roles": [
{
"character": "Boy A (voice)",
"credit_id": "676462948856704350ae1f8e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2719917,
"known_for_department": "Acting",
"name": "Noriaki Kanze",
"order": 567,
"original_name": "観世智顕",
"popularity": 5.68,
"profile_path": "/oMtucEisqIrqRVrhIgdMfqusKY2.jpg",
"roles": [
{
"character": "Boy B (voice)",
"credit_id": "676462a80c865f24891f6644",
"episode_count": 1
}
],
"total_episode_count": 1
}
],
"crew": [
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 144663,
"jobs": [
{
"credit_id": "67043acc537446e220796bb7",
"episode_count": 12,
"job": "Art Designer"
}
],
"known_for_department": "Art",
"name": "Seiki Tamura",
"original_name": "田村せいき",
"popularity": 2.92,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 80936,
"jobs": [
{
"credit_id": "65f4f6741e259a017c4c2365",
"episode_count": 12,
"job": "Art Direction"
}
],
"known_for_department": "Art",
"name": "Junichi Higashi",
"original_name": "東潤一",
"popularity": 8.255,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2044776,
"jobs": [
{
"credit_id": "67043318508dfa7ba3796f0e",
"episode_count": 2,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Fuga Yamashiro",
"original_name": "山代風我",
"popularity": 4.616,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2900138,
"jobs": [
{
"credit_id": "6723c845c3f65a93a4501cc8",
"episode_count": 2,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Hiromi Nishiyama",
"original_name": "Hiromi Nishiyama",
"popularity": 0.727,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1496193,
"jobs": [
{
"credit_id": "67043ad84cf47c730f74051a",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yuta Murakami",
"original_name": "村上悠太",
"popularity": 3.518,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 2968407,
"jobs": [
{
"credit_id": "672d748dbe76b0644b3df1d6",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Nozomi Fukui",
"original_name": "Nozomi Fukui",
"popularity": 2.164,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 4079768,
"jobs": [
{
"credit_id": "67043adc3afc91a5f113aeed",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Kanata Baba",
"original_name": "馬場奏多",
"popularity": 0.479,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3419470,
"jobs": [
{
"credit_id": "67043ade174a1d5773797666",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Takayuki Kotani",
"original_name": "小谷隆之",
"popularity": 0.638,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3031211,
"jobs": [
{
"credit_id": "6711bba398f6a758cd54831e",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Daiki Yonemori",
"original_name": "Daiki Yonemori",
"popularity": 1.538,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1456789,
"jobs": [
{
"credit_id": "676760030b2fbb9dea5e31dd",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Art",
"name": "Shinsaku Sasaki",
"original_name": "笹木信作",
"popularity": 9.944,
"profile_path": "/gIjYF8vegOuvIZsfv2UzH8GMf4h.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 0,
"id": 4986619,
"jobs": [
{
"credit_id": "67043b217cfea6f2027404f4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Rui Nakayama",
"original_name": "中山瑠",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1956404,
"jobs": [
{
"credit_id": "6752027772d1a8a59c2991af",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Heo Jong",
"original_name": "Heo Jong",
"popularity": 4.964,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3556013,
"jobs": [
{
"credit_id": "67043ada174a1d5773797658",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Miki Kobayashi",
"original_name": "小林美希",
"popularity": 2.496,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3090000,
"jobs": [
{
"credit_id": "67377057e05823bd9c7c7a2d",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Shuto Enomoto",
"original_name": "Shuto Enomoto",
"popularity": 1.327,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1879426,
"jobs": [
{
"credit_id": "67043add3afc91a5f113aef4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Fuminao Akai",
"original_name": "赤井文尚",
"popularity": 1.046,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3213251,
"jobs": [
{
"credit_id": "67043ad9b4e3d1a4847407d1",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Jin Sakuma",
"original_name": "佐久間仁",
"popularity": 1.605,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3150722,
"jobs": [
{
"credit_id": "67043ad73afc91a5f113aee7",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Momoya Iwata",
"original_name": "岩田百代",
"popularity": 4.175,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3150713,
"jobs": [
{
"credit_id": "67043ae8537446e220796bc5",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Mari Ishikawa",
"original_name": "石川真理",
"popularity": 1.256,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3150725,
"jobs": [
{
"credit_id": "67043ad43d7b3c6c07797684",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yusuke Mizuno",
"original_name": "水野雄介",
"popularity": 2.089,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6748ba53d44c3bfa4618ce0a",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1243640,
"jobs": [
{
"credit_id": "673f81a13f6b210e584223e9",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Hiroshi Nishikiori",
"original_name": "錦織博",
"popularity": 11.078,
"profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 4079767,
"jobs": [
{
"credit_id": "67043adc3afc91a5f113aef1",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yoshihiro Horigami",
"original_name": "堀上佳滉",
"popularity": 1.469,
"profile_path": "/f9PScyalh7jW0wY1s6md3E9LHSh.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3895737,
"jobs": [
{
"credit_id": "67043adab6f587ede813b08d",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Kanako Abe",
"original_name": "安部夏菜子",
"popularity": 1.031,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3221771,
"jobs": [
{
"credit_id": "671a7d0be833d92ef05fe61b",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "mokochan",
"original_name": "モコちゃん",
"popularity": 1.267,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2160240,
"jobs": [
{
"credit_id": "67043ad63afc91a5f113aee4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Shintaro Akiyama",
"original_name": "秋山慎太郎",
"popularity": 2.47,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2160239,
"jobs": [
{
"credit_id": "67043ad6174a1d5773797653",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Masahiro Abe",
"original_name": "阿部真大",
"popularity": 5.394,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 0,
"id": 3895742,
"jobs": [
{
"credit_id": "67043adb174a1d577379765d",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Ayumu Sakurai",
"original_name": "桜井歩",
"popularity": 0.714,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2159667,
"jobs": [
{
"credit_id": "67043ad5b4e3d1a4847407cc",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "So Senoo",
"original_name": "妹尾想",
"popularity": 2.659,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Camera",
"gender": 2,
"id": 1632175,
"jobs": [
{
"credit_id": "65f4f6781e259a017c4c2370",
"episode_count": 12,
"job": "Director of Photography"
}
],
"known_for_department": "Camera",
"name": "Kazuto Izumita",
"original_name": "出水田和人",
"popularity": 1.524,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2044776,
"jobs": [
{
"credit_id": "6564bbc6706e5600fe04a2cb",
"episode_count": 13,
"job": "Series Director"
},
{
"credit_id": "670433187cfea6f2027402a3",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Fuga Yamashiro",
"original_name": "山代風我",
"popularity": 4.616,
"profile_path": null,
"total_episode_count": 14
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3221771,
"jobs": [
{
"credit_id": "671a7cfca4ac8a432c5c11b0",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "670432dfb4e3d1a484740583",
"episode_count": 12,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "mokochan",
"original_name": "モコちゃん",
"popularity": 1.267,
"profile_path": null,
"total_episode_count": 13
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3089980,
"jobs": [
{
"credit_id": "67676007f926be03cc74e94f",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "6704331a508dfa7ba3796f14",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Directing",
"name": "Toru Hasutani",
"original_name": "蓮谷トオル",
"popularity": 0.713,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6748ba5afa8873917ff7b079",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "6704331b508dfa7ba3796f1a",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2313366,
"jobs": [
{
"credit_id": "676463928856704350ae1fe2",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Tetsuya Wakano",
"original_name": "Tetsuya Wakano",
"popularity": 1.399,
"profile_path": "/1c6plg3VZ2UT9UIIcIlQ8xHoInq.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1491875,
"jobs": [
{
"credit_id": "6767603bf926be03cc74e963",
"episode_count": 1,
"job": "Series Director"
}
],
"known_for_department": "Visual Effects",
"name": "Abel Góngora",
"original_name": "Abel Góngora",
"popularity": 5.827,
"profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1243640,
"jobs": [
{
"credit_id": "673f81963f6b210e584223e0",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Hiroshi Nishikiori",
"original_name": "錦織博",
"popularity": 11.078,
"profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 4381855,
"jobs": [
{
"credit_id": "6704331ab4e3d1a48474059d",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Blues Lee",
"original_name": "Blues Lee",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 1,
"id": 2968407,
"jobs": [
{
"credit_id": "672d747ebe76b0644b3df1cb",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Nozomi Fukui",
"original_name": "Nozomi Fukui",
"popularity": 2.164,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2900138,
"jobs": [
{
"credit_id": "6723c83b1df70f7920ff087c",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Hiromi Nishiyama",
"original_name": "Hiromi Nishiyama",
"popularity": 0.727,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 3344603,
"jobs": [
{
"credit_id": "6736a39d021223a874c5fc1a",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Kotaro Matsunaga",
"original_name": "Kotaro Matsunaga",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1835257,
"jobs": [
{
"credit_id": "67087652d357a2103996950d",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Visual Effects",
"name": "Rushio Moriyama",
"original_name": "Rushio Moriyama",
"popularity": 1.882,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 1,
"id": 3291884,
"jobs": [
{
"credit_id": "675202998af6d3feb3aff8b3",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Kayona Yamada",
"original_name": "山田加余仲",
"popularity": 0.738,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 2936285,
"jobs": [
{
"credit_id": "6704331cb4e3d1a4847405a3",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Gan Haotian",
"original_name": "甘浩天",
"popularity": 0.929,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3031211,
"jobs": [
{
"credit_id": "6711bb968e844657b7fae8a7",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Visual Effects",
"name": "Daiki Yonemori",
"original_name": "Daiki Yonemori",
"popularity": 1.538,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Editing",
"gender": 1,
"id": 2574520,
"jobs": [
{
"credit_id": "6704324bb6f587ede813ad4e",
"episode_count": 12,
"job": "Assistant Editor"
}
],
"known_for_department": "Editing",
"name": "Misaki Enokida",
"original_name": "榎田美咲",
"popularity": 3.814,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 2,
"id": 4986515,
"jobs": [
{
"credit_id": "67043266b6f587ede813ad72",
"episode_count": 12,
"job": "Online Editor"
}
],
"known_for_department": "Editing",
"name": "Reo Nakamura",
"original_name": "中村怜央",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 2,
"id": 1570184,
"jobs": [
{
"credit_id": "65f4f67ceb14fa017cb997fd",
"episode_count": 12,
"job": "Editor"
}
],
"known_for_department": "Editing",
"name": "Kiyoshi Hirose",
"original_name": "廣瀬清志",
"popularity": 4.63,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 1,
"id": 3243393,
"jobs": [
{
"credit_id": "670432513d7b3c6c0779735d",
"episode_count": 12,
"job": "Online Editor"
}
],
"known_for_department": "Editing",
"name": "Kasumi Shibata",
"original_name": "柴田香澄",
"popularity": 1.076,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3200954,
"jobs": [
{
"credit_id": "6703dea818a8b49d3213983c",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Tatsuya Ishikawa",
"original_name": "石川達也",
"popularity": 2.364,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3723106,
"jobs": [
{
"credit_id": "6703dea7a5f29f43a573eac2",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Soichiro Saito",
"original_name": "斉藤壮一郎",
"popularity": 1.805,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 1491866,
"jobs": [
{
"credit_id": "6703de04a5f29f43a573ea7a",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Directing",
"name": "Eunyoung Choi",
"original_name": "최은영",
"popularity": 8.89,
"profile_path": "/rsJaoDO9eL7d3Vv2jkyHJoXMjh.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2801613,
"jobs": [
{
"credit_id": "6703ddfe3d7b3c6c07795c94",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Yoshihisa Heishi",
"original_name": "瓶子吉久",
"popularity": 2.686,
"profile_path": "/1nKceWUfKlTmRsQ4QzPCmqx4ceX.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 1816778,
"jobs": [
{
"credit_id": "6703dea318a8b49d3213982c",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Toshihiro Maeda",
"original_name": "前田俊博",
"popularity": 8.337,
"profile_path": "/uEKRPogU0Z1Lbgy3NWoxeTqX41T.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2431671,
"jobs": [
{
"credit_id": "6703dea84cf47c730f73f08d",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroshi Muto",
"original_name": "武藤大司",
"popularity": 0.171,
"profile_path": "/u8miFudieUNRXPiEPntNUsGcXYg.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3286707,
"jobs": [
{
"credit_id": "6703dea4b4e3d1a48473eefe",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Tatsuro Hayashi",
"original_name": "林辰朗",
"popularity": 1.033,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 4539931,
"jobs": [
{
"credit_id": "6703ddf0a5f29f43a573ea5d",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Yusuke Arai",
"original_name": "新居祐介",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 1257407,
"jobs": [
{
"credit_id": "6703ddf43d7b3c6c07795c85",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Atsuhiro Iwakami",
"original_name": "岩上敦宏",
"popularity": 4.839,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2044779,
"jobs": [
{
"credit_id": "6703dea63d7b3c6c07795cf6",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Kohei Sakita",
"original_name": "崎田康平",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2271902,
"jobs": [
{
"credit_id": "6703dea53afc91a5f11396ca",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroshi Kamei",
"original_name": "亀井博司",
"popularity": 1.564,
"profile_path": "/cxxyQF5Bdo2fhaS25HytXJBtE1Z.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 1048416,
"jobs": [
{
"credit_id": "6703debe508dfa7ba3795aa9",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Yoshiko Makabe",
"original_name": "真壁佳子",
"popularity": 0.243,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 4985808,
"jobs": [
{
"credit_id": "6703de14b6f587ede8139b52",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Mihoko Shibata",
"original_name": "柴田三穂子",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3103118,
"jobs": [
{
"credit_id": "6703dea4508dfa7ba3795aa3",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Hayato Saga",
"original_name": "嵯峨隼人",
"popularity": 2.449,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 3499820,
"jobs": [
{
"credit_id": "6703dea93d7b3c6c07795cf9",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Takako Yamamori",
"original_name": "山守貴子",
"popularity": 0.897,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3555794,
"jobs": [
{
"credit_id": "6703ddfa3d7b3c6c07795c88",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Tatsunobu Sato",
"original_name": "佐藤龍伸",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2381689,
"jobs": [
{
"credit_id": "6703dea63d7b3c6c07795cf3",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroyuki Aoi",
"original_name": "青井宏之",
"popularity": 2.157,
"profile_path": "/bSX92tNZtKsGtS56EazzBqbNYba.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3470015,
"jobs": [
{
"credit_id": "6703de92b4e3d1a48473eee8",
"episode_count": 12,
"job": "Sound Mixer"
}
],
"known_for_department": "Sound",
"name": "Hiroaki Ota",
"original_name": "太田泰明",
"popularity": 1.7,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3304217,
"jobs": [
{
"credit_id": "66781fd26573606ef673275c",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "DJ Matsunaga",
"original_name": "DJ松永",
"popularity": 4.918,
"profile_path": "/A1HubDJZBAxKwu38znUJjndpSEW.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 1,
"id": 3523367,
"jobs": [
{
"credit_id": "66c4599e6c67ac7e7b3b1e1f",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "ACA-Ne",
"original_name": "ずっと真夜中でいいのに",
"popularity": 1.473,
"profile_path": "/ceF3sRCzTbNheksCq7osAp8ubHW.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 2285493,
"jobs": [
{
"credit_id": "6703de8c3d7b3c6c07795ce5",
"episode_count": 12,
"job": "Sound Effects"
}
],
"known_for_department": "Sound",
"name": "Shota Yaso",
"original_name": "八十正太",
"popularity": 4.937,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3304216,
"jobs": [
{
"credit_id": "66781fe02dbc639f16f3f5e8",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "R-Shitei",
"original_name": "R-指定",
"popularity": 23.908,
"profile_path": "/jAKabjhF3IaQDBrx4aWlAKUrZnF.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 0,
"id": 3434674,
"jobs": [
{
"credit_id": "670432847cfea6f202740219",
"episode_count": 12,
"job": "Foley Artist"
}
],
"known_for_department": "Sound",
"name": "Takumi Hamamoto",
"original_name": "濱本拓海",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 1,
"id": 1555482,
"jobs": [
{
"credit_id": "65f4f681e039f10164026b55",
"episode_count": 12,
"job": "Sound Director"
}
],
"known_for_department": "Sound",
"name": "Eriko Kimura",
"original_name": "木村絵理子",
"popularity": 5.915,
"profile_path": "/yu3PPgzxVy8f8Qri9mdOTWMPhan.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 1677276,
"jobs": [
{
"credit_id": "6564b9db8f26bc00ff6ff2b1",
"episode_count": 12,
"job": "Original Music Composer"
}
],
"known_for_department": "Sound",
"name": "Kensuke Ushio",
"original_name": "牛尾憲輔",
"popularity": 8.39,
"profile_path": "/A3FnNDo5WKMnAGHPlAMpRED4s9j.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1144163,
"jobs": [
{
"credit_id": "6564b9c8a35c8e011bfda261",
"episode_count": 12,
"job": "Character Designer"
},
{
"credit_id": "67043319508dfa7ba3796f11",
"episode_count": 2,
"job": "Supervising Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Naoyuki Onda",
"original_name": "恩田尚之",
"popularity": 11.636,
"profile_path": null,
"total_episode_count": 14
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1491875,
"jobs": [
{
"credit_id": "670432b87cfea6f202740222",
"episode_count": 12,
"job": "Opening/Ending Animation"
},
{
"credit_id": "670433aab6f587ede813aea3",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Abel Góngora",
"original_name": "Abel Góngora",
"popularity": 5.827,
"profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg",
"total_episode_count": 13
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 40344,
"jobs": [
{
"credit_id": "65f4f66fd4d509017daa6652",
"episode_count": 12,
"job": "Color Designer"
}
],
"known_for_department": "Visual Effects",
"name": "Satoshi Hashimoto",
"original_name": "橋本賢",
"popularity": 13.793,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 4690783,
"jobs": [
{
"credit_id": "6703de6b3d7b3c6c07795cd2",
"episode_count": 12,
"job": "Color Designer"
}
],
"known_for_department": "Visual Effects",
"name": "Makiho Kondo",
"original_name": "近藤牧穂",
"popularity": 0.538,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1297517,
"jobs": [
{
"credit_id": "6564bbe6d9554b011d6420d0",
"episode_count": 12,
"job": "Creature Design"
}
],
"known_for_department": "Visual Effects",
"name": "Yoshimichi Kameda",
"original_name": "亀田祥倫",
"popularity": 12.762,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2844419,
"jobs": [
{
"credit_id": "6704331fb4e3d1a4847405b5",
"episode_count": 2,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Shinobu Isoko",
"original_name": "五十子忍",
"popularity": 4.146,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3095251,
"jobs": [
{
"credit_id": "6704331eb6f587ede813ae1a",
"episode_count": 2,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kotomi Ota",
"original_name": "太田琴美",
"popularity": 0.344,
"profile_path": "/kWLoB4XJ7oCRdcy5gHenqeoH4bv.jpg",
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2936285,
"jobs": [
{
"credit_id": "6704331d508dfa7ba3796f20",
"episode_count": 1,
"job": "Key Animation"
},
{
"credit_id": "6704331db6f587ede813ae17",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Gan Haotian",
"original_name": "甘浩天",
"popularity": 0.929,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3095189,
"jobs": [
{
"credit_id": "6704331fb4e3d1a4847405b8",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Yusaku Nagahama",
"original_name": "長濱佑作",
"popularity": 2.074,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3090000,
"jobs": [
{
"credit_id": "673770d880fda6e3e3746433",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Shuto Enomoto",
"original_name": "Shuto Enomoto",
"popularity": 1.327,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2815799,
"jobs": [
{
"credit_id": "6704338e174a1d5773797472",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "MYOUN",
"original_name": "묘운",
"popularity": 6.447,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2933092,
"jobs": [
{
"credit_id": "6704331e508dfa7ba3796f23",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Masamichi Ishiyama",
"original_name": "石山正修",
"popularity": 2.772,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3739026,
"jobs": [
{
"credit_id": "67043ae1b4e3d1a4847407d6",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Keiko Sasaki",
"original_name": "佐々木景子",
"popularity": 0.433,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2910064,
"jobs": [
{
"credit_id": "6704332ab6f587ede813ae3e",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Akihito Sudo",
"original_name": "須藤瑛仁",
"popularity": 2.801,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3204408,
"jobs": [
{
"credit_id": "67043322b6f587ede813ae24",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Mark Corcoran",
"original_name": "コーコラン・マーク",
"popularity": 0.567,
"profile_path": "/eygXbiOmdqulHddNcC27Bxzxg7h.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 4353617,
"jobs": [
{
"credit_id": "67043327b6f587ede813ae38",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Qiu Chengrui",
"original_name": "丘城鋭",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2756604,
"jobs": [
{
"credit_id": "670433264cf47c730f740240",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Miki Kaneko",
"original_name": "金子美紀",
"popularity": 2.189,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3488017,
"jobs": [
{
"credit_id": "67043ae118a8b49d3213adae",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Akane Ueda",
"original_name": "上田茜",
"popularity": 1.115,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3054960,
"jobs": [
{
"credit_id": "67043323b6f587ede813ae27",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "azoura",
"original_name": "azoura",
"popularity": 1.713,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2044754,
"jobs": [
{
"credit_id": "67043321508dfa7ba3796f34",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Shoko Nishigaki",
"original_name": "西垣庄子",
"popularity": 1.81,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2855374,
"jobs": [
{
"credit_id": "671a7d472685cb6563c0b075",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Tomomi Noda",
"original_name": "Tomomi Noda",
"popularity": 1.225,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 5143916,
"jobs": [
{
"credit_id": "676ee7e5f9454eeb1d92abb7",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Zhou Xuan",
"original_name": "周玄",
"popularity": 0.035,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3916658,
"jobs": [
{
"credit_id": "67043363cc904f12d913ae0e",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Yue",
"original_name": "ゆえ",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2702912,
"jobs": [
{
"credit_id": "67043332b6f587ede813ae41",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Nick McKergow",
"original_name": "Nick McKergow",
"popularity": 0.544,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3818550,
"jobs": [
{
"credit_id": "670433b5cc904f12d913ae47",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Nonno",
"original_name": "のんの",
"popularity": 0.323,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3005017,
"jobs": [
{
"credit_id": "67043328508dfa7ba3796f3a",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Liu Yuchen",
"original_name": "劉禹辰",
"popularity": 0.579,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3319186,
"jobs": [
{
"credit_id": "67043325508dfa7ba3796f37",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kinya Rikitoku",
"original_name": "力徳欽也",
"popularity": 2.095,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3209200,
"jobs": [
{
"credit_id": "6704332a4cf47c730f740244",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "nasiijau",
"original_name": "nasiijau",
"popularity": 0.113,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2182422,
"jobs": [
{
"credit_id": "671a7d79a4ac8a432c5c11ea",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Yumi Shimojo",
"original_name": "下條祐未",
"popularity": 4.009,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3042857,
"jobs": [
{
"credit_id": "67043adf508dfa7ba3797228",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Camera",
"name": "Noriyuki Ueda",
"original_name": "上田程之",
"popularity": 1.235,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6704331cb4e3d1a4847405a0",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2809667,
"jobs": [
{
"credit_id": "67043325b6f587ede813ae31",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Masaki Hayano",
"original_name": "早野正樹",
"popularity": 2.041,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3056593,
"jobs": [
{
"credit_id": "67043324b6f587ede813ae2d",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Yuki Ito",
"original_name": "伊藤優希",
"popularity": 5.097,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3352626,
"jobs": [
{
"credit_id": "67043323b6f587ede813ae2a",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "momofuji",
"original_name": "百藤",
"popularity": 0.723,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3508322,
"jobs": [
{
"credit_id": "67043328b6f587ede813ae3b",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kotaro Okubo",
"original_name": "大久保洸太郎",
"popularity": 1.114,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2856634,
"jobs": [
{
"credit_id": "671a7d6827bd57d91f62685c",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Chan Yan",
"original_name": "Chan Yan",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 4986525,
"jobs": [
{
"credit_id": "67043350b6f587ede813ae72",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Genta Ishimori",
"original_name": "石守源太",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3326157,
"jobs": [
{
"credit_id": "671a7c2827bd57d91f6267aa",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kyohei Ebata",
"original_name": "江端恭平",
"popularity": 3.176,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 4381855,
"jobs": [
{
"credit_id": "6704331bb6f587ede813ae13",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Blues Lee",
"original_name": "Blues Lee",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3156687,
"jobs": [
{
"credit_id": "67087746d357a210399695af",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Keika Ushimaru",
"original_name": "牛丸圭華",
"popularity": 1.67,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3243194,
"jobs": [
{
"credit_id": "67043ae0508dfa7ba379722b",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Yuma Akasu",
"original_name": "赤須由麻",
"popularity": 0.551,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2520222,
"jobs": [
{
"credit_id": "67043320508dfa7ba3796f27",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Mari Motohashi",
"original_name": "本橋茉里",
"popularity": 1.708,
"profile_path": "/A12iiRiKiquRwIECRFdXnfutkfu.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Writing",
"gender": 2,
"id": 1491863,
"jobs": [
{
"credit_id": "6564b9a73679a10974dab748",
"episode_count": 12,
"job": "Series Composition"
},
{
"credit_id": "670433177cfea6f2027402a0",
"episode_count": 12,
"job": "Writer"
}
],
"known_for_department": "Writing",
"name": "Hiroshi Seko",
"original_name": "瀬古浩司",
"popularity": 14.03,
"profile_path": "/zdTUsjMPFEZhygVdKs5rABtHJyk.jpg",
"total_episode_count": 24
},
{
"adult": false,
"department": "Writing",
"gender": 2,
"id": 4399732,
"jobs": [
{
"credit_id": "665fa9d243ba5474df0906d6",
"episode_count": 12,
"job": "Original Concept"
}
],
"known_for_department": "Writing",
"name": "Yukinobu Tatsu",
"original_name": "龍幸伸",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
}
],
"id": 240411
}TV Series
Aggregate Credits
Get the aggregate credits (cast and crew) that have been added to a TV show.
📘Note
This call differs from the main credits call in that it does not return the newest season. Instead, it is a view of all the entire cast & crew for all episodes belonging to a TV show.
GET
/
3
/
tv
/
{series_id}
/
aggregate_credits
Aggregate Credits
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits'import requests
url = "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.themoviedb.org/3/tv/{{series_id}}/aggregate_credits")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"cast": [
{
"adult": false,
"gender": 1,
"id": 2363904,
"known_for_department": "Acting",
"name": "Shion Wakayama",
"order": 0,
"original_name": "若山詩音",
"popularity": 29.234,
"profile_path": "/b697ggFreuliEfl4TjLgxhJCQXr.jpg",
"roles": [
{
"character": "Momo Ayase (voice)",
"credit_id": "657d6dd61da7a6076d2a42d6",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 2,
"id": 1256603,
"known_for_department": "Acting",
"name": "Natsuki Hanae",
"order": 1,
"original_name": "花江夏樹",
"popularity": 49.726,
"profile_path": "/alTb0DlcPIbcwM08WSmxFai58sd.jpg",
"roles": [
{
"character": "Ken 'Okarun' Takakura (voice)",
"credit_id": "657d6e195c5cc806b8960c33",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 1,
"id": 65510,
"known_for_department": "Acting",
"name": "Mayumi Tanaka",
"order": 2,
"original_name": "田中真弓",
"popularity": 62.954,
"profile_path": "/by4t1tYtEXsfbFj9TvOjozBmQla.jpg",
"roles": [
{
"character": "Turbo Granny (voice)",
"credit_id": "670ad44cb15d97b1a93c2c0a",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 24651,
"known_for_department": "Acting",
"name": "Nana Mizuki",
"order": 3,
"original_name": "水樹奈々",
"popularity": 49.396,
"profile_path": "/1h4C1kz8mziHmiB91MliTDHwgoh.jpg",
"roles": [
{
"character": "Seiko (Dodoria Santa) (voice)",
"credit_id": "671a7b406d6b705dc8713514",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 992869,
"known_for_department": "Acting",
"name": "Ayane Sakura",
"order": 519,
"original_name": "佐倉綾音",
"popularity": 58.232,
"profile_path": "/yPbTmntASE9psPIMhNGU5oo6vIH.jpg",
"roles": [
{
"character": "Aira Shiratori (voice)",
"credit_id": "6723c3ab1d0b571b8a5c5870",
"episode_count": 7
}
],
"total_episode_count": 7
},
{
"adult": false,
"gender": 1,
"id": 2208367,
"known_for_department": "Acting",
"name": "Kaori Maeda",
"order": 500,
"original_name": "前田佳織里",
"popularity": 29.166,
"profile_path": "/i1yTlI3z5BvIuXQ26XtJ0PyLEAX.jpg",
"roles": [
{
"character": "Miko (voice)",
"credit_id": "66ff71bee480149146850afc",
"episode_count": 6
}
],
"total_episode_count": 6
},
{
"adult": false,
"gender": 1,
"id": 1647636,
"known_for_department": "Acting",
"name": "Miyu Tomita",
"order": 501,
"original_name": "富田美憂",
"popularity": 38.374,
"profile_path": "/rSR17l4HdchLkhpRuAZbGbXNmUS.jpg",
"roles": [
{
"character": "Muko (voice)",
"credit_id": "66ff71c8e480149146850b00",
"episode_count": 5
}
],
"total_episode_count": 5
},
{
"adult": false,
"gender": 1,
"id": 1762671,
"known_for_department": "Acting",
"name": "Aya Yamane",
"order": 520,
"original_name": "山根綺",
"popularity": 21.728,
"profile_path": "/va0XORY6VchoceyqywJ4KxsVN5s.jpg",
"roles": [
{
"character": "Tsubame (voice)",
"credit_id": "6723c48318827a9329f1b63b",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2649314,
"known_for_department": "Acting",
"name": "Natsu Yorita",
"order": 521,
"original_name": "依田菜津",
"popularity": 18.774,
"profile_path": "/gOLAf6UJYz2YTobH00jQHNzSLqT.jpg",
"roles": [
{
"character": "Anzu (voice)",
"credit_id": "6723c53818827a9329f1b699",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2261331,
"known_for_department": "Acting",
"name": "Koji Seki",
"order": 527,
"original_name": "関幸司",
"popularity": 9.879,
"profile_path": "/lOPiuf6BGq3wpXFiVc5o6jvFu3J.jpg",
"roles": [
{
"character": "TV Station Producer (voice)",
"credit_id": "6711ba4725c70b8b1d678dff",
"episode_count": 1
},
{
"character": "Male Client (voice)",
"credit_id": "671a7c86e833d92ef05fe5f1",
"episode_count": 1
},
{
"character": "Male Teacher (voice)",
"credit_id": "675babfa369ac03099eb062e",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2724028,
"known_for_department": "Acting",
"name": "Yukiko Motoyoshi",
"order": 528,
"original_name": "元吉有希子",
"popularity": 7.157,
"profile_path": "/1v2NKcXE0i5YtMHnYsmPQrZRUss.jpg",
"roles": [
{
"character": "Female Servant (voice)",
"credit_id": "6711bb4c8e844657b7fae865",
"episode_count": 1
},
{
"character": "Receptionist (voice)",
"credit_id": "671a7c0b4542e371fe0a56c2",
"episode_count": 1
},
{
"character": "Female Student A (voice)",
"credit_id": "675bac5316e963ddaf0dd525",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 84507,
"known_for_department": "Acting",
"name": "Kazuya Nakai",
"order": 533,
"original_name": "中井和哉",
"popularity": 45.963,
"profile_path": "/78PKViY7brjF3AJI8h3tXyUyYT7.jpg",
"roles": [
{
"character": "Serpoians (voice)",
"credit_id": "670ad345bbb1a9e81c61ade8",
"episode_count": 2
},
{
"character": "Serpoian A / Serpoian B / Serpoian C (voice)",
"credit_id": "6763b340e14e3bcfa74a4383",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 90567,
"known_for_department": "Acting",
"name": "Tomokazu Seki",
"order": 536,
"original_name": "関智一",
"popularity": 33.265,
"profile_path": "/jGQC9KkfNMh2wBgizw81GLX2KN2.jpg",
"roles": [
{
"character": "Dover Demon (voice)",
"credit_id": "673f806b4dec1f98b29bf3b0",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 1324666,
"known_for_department": "Acting",
"name": "Kaito Ishikawa",
"order": 541,
"original_name": "石川界人",
"popularity": 46.169,
"profile_path": "/fzjIkotjUHHs3wgftM9tqdsG8ph.jpg",
"roles": [
{
"character": "Jin 'Jiji' Enjouji (voice)",
"credit_id": "6751fddcab6cc3a4c8fc6cb9",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2934417,
"known_for_department": "Acting",
"name": "Koseki Kogure",
"order": 527,
"original_name": "木暮晃石",
"popularity": 6.791,
"profile_path": "/a4nQ5seWDMMSDzW37MkRpk0ZnTE.jpg",
"roles": [
{
"character": "Student C (voice)",
"credit_id": "6748ba05169339d34cf114c1",
"episode_count": 1
},
{
"character": "Couple Man (voice)",
"credit_id": "671a7b994542e371fe0a56a7",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 101913,
"known_for_department": "Acting",
"name": "Kikuko Inoue",
"order": 529,
"original_name": "井上喜久子",
"popularity": 20.939,
"profile_path": "/pPxGWy53FgYSC79zmxblmHe0gI3.jpg",
"roles": [
{
"character": "Acrobatic Silky (voice)",
"credit_id": "67376c8580fda6e3e37462b0",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 3594209,
"known_for_department": "Acting",
"name": "Tomoya Ito",
"order": 533,
"original_name": "井藤智哉",
"popularity": 0.892,
"profile_path": "/kVrJkr313KH7VgIJDzLnC9WFHd4.jpg",
"roles": [
{
"character": "Male Student D (voice)",
"credit_id": "6723c781826fe5799cc4e9c9",
"episode_count": 1
},
{
"character": "Student A (voice)",
"credit_id": "6748b9e2d44c3bfa4618cde1",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 144655,
"known_for_department": "Acting",
"name": "Tomokazu Sugita",
"order": 552,
"original_name": "杉田智和",
"popularity": 37.34,
"profile_path": "/cv5zuPZySNsHXu24pjKLYCRzJ2J.jpg",
"roles": [
{
"character": "Taro (voice)",
"credit_id": "675bab11ab17a5e30487b005",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 129960,
"known_for_department": "Acting",
"name": "Fumi Hirano",
"order": 553,
"original_name": "平野文",
"popularity": 23.982,
"profile_path": "/nP3c7cxj4iCHKCrlJtxtnsF3prS.jpg",
"roles": [
{
"character": "Hana (voice)",
"credit_id": "675bab33b65c1a19cb964705",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 1991244,
"known_for_department": "Acting",
"name": "Ryunosuke Watanuki",
"order": 502,
"original_name": "綿貫竜之介",
"popularity": 21.168,
"profile_path": "/cJBw6vHWD4u9dAdBFA7CUqKUj9A.jpg",
"roles": [
{
"character": "Momo's Boyfriend (voice)",
"credit_id": "66ff71cf7830c1301e7ca9af",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3106016,
"known_for_department": "Acting",
"name": "Hikaru Tanaka",
"order": 503,
"original_name": "田中光",
"popularity": 9.512,
"profile_path": "/jKLQhWJ9ZW32TKK9NN3pksf39XX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "66ff71d67830c1301e7ca9b2",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4979890,
"known_for_department": "Acting",
"name": "Seitaro Taniguchi",
"order": 504,
"original_name": "谷口誠太郎",
"popularity": 0.001,
"profile_path": "/aPLluDuanhSK9qCtlQhPNDavO0l.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "66ff71df6fc74e5756f7f433",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3271011,
"known_for_department": "Acting",
"name": "Satomi Kobashi",
"order": 505,
"original_name": "小橋里美",
"popularity": 1.093,
"profile_path": "/m8JQQVWvdchgot7L7WSc2556u2F.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71e76fc74e5756f7f439",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2862191,
"known_for_department": "Acting",
"name": "Mayuko Kazama",
"order": 506,
"original_name": "風間万裕子",
"popularity": 15.951,
"profile_path": "/lWRGpyrrbq9KmBZc1yjeS1EwXkd.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71ef6fc74e5756f7f440",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 126690,
"known_for_department": "Acting",
"name": "Ryuuzaburou Ootomo",
"order": 507,
"original_name": "大友龍三郎",
"popularity": 24.872,
"profile_path": "/fk3ebYlTjILTXkzJNvOi3SRUNb6.jpg",
"roles": [
{
"character": "Flatwoods Monster (voice)",
"credit_id": "670875df6adf6620212ff03c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3188064,
"known_for_department": "Acting",
"name": "Hayato Kashiwazaki",
"order": 509,
"original_name": "柏崎隼史",
"popularity": 1.45,
"profile_path": "/zNEION3yYTdX7QD0GwPHpVBoquh.jpg",
"roles": [
{
"character": "Shoma (voice)",
"credit_id": "6711ba0f1f0ea4714edbd801",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3302611,
"known_for_department": "Acting",
"name": "Naoki Tamanoi",
"order": 511,
"original_name": "玉野井直樹",
"popularity": 1.071,
"profile_path": "/7ggnBHTwhybh9EsBisu3lYuJSdN.jpg",
"roles": [
{
"character": "Taxi Driver (voice)",
"credit_id": "6711baed25c70b8b1d678e39",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3484939,
"known_for_department": "Acting",
"name": "Shitan En",
"order": 513,
"original_name": "閻子丹",
"popularity": 4.221,
"profile_path": "/jJm7ILHumo0vy2JNotAdGAQcigt.jpg",
"roles": [
{
"character": "Assistant Producer (voice)",
"credit_id": "6713fd8ac6e304096195f363",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 5010097,
"known_for_department": "Acting",
"name": "Emi Taniguchi",
"order": 514,
"original_name": "谷口恵美",
"popularity": 0.001,
"profile_path": "/tpHBOA22CCkNZk09yiLEY7T78gL.jpg",
"roles": [
{
"character": "TV Announcer (voice)",
"credit_id": "6713fe832bbba65f7b10ebe1",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2882581,
"known_for_department": "Acting",
"name": "Ruka Yashiro",
"order": 516,
"original_name": "屋代瑠花",
"popularity": 1.381,
"profile_path": "/wNJzkcMjHL6mUtk5Qu2PjG33J35.jpg",
"roles": [
{
"character": "Couple Woman (voice)",
"credit_id": "671a7bc62685cb6563c0afb9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1779969,
"known_for_department": "Acting",
"name": "Masumi Tazawa",
"order": 522,
"original_name": "田澤茉純",
"popularity": 4.54,
"profile_path": "/p0Qld9ey2zZEL2edgeWAY9djisQ.jpg",
"roles": [
{
"character": "Momo's Friend A (voice)",
"credit_id": "6723c5af82658aeeac92724f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3049705,
"known_for_department": "Acting",
"name": "Konomi Inagaki",
"order": 523,
"original_name": "稲垣好",
"popularity": 6.818,
"profile_path": "/qYizWDjykF0j5foMvKGYyRta037.jpg",
"roles": [
{
"character": "Momo's Friend B (voice)",
"credit_id": "6723c5e482658aeeac927280",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5033671,
"known_for_department": "Acting",
"name": "Hoshino Kouki",
"order": 524,
"original_name": "星野煌季",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "6723c6bd826fe5799cc4e967",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2800663,
"known_for_department": "Acting",
"name": "Koki Koyasu",
"order": 525,
"original_name": "子安光樹",
"popularity": 3.422,
"profile_path": "/rTY2DUQgPPwEXAlID8FmIZxIRAX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "6723c72bfe2a8a011ed755d7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3288856,
"known_for_department": "Acting",
"name": "Kouki Osuzu",
"order": 526,
"original_name": "大鈴功起",
"popularity": 5.253,
"profile_path": "/999LucUsQrPAnsABM1skmoFvOGP.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "6723c74e003c4b5b5b645a3e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3195937,
"known_for_department": "Acting",
"name": "Tasuku Kaito",
"order": 527,
"original_name": "海渡翼",
"popularity": 4.183,
"profile_path": "/eDtru6RxBnCtuYtU2mIXidKekJv.jpg",
"roles": [
{
"character": "Male Student C (voice)",
"credit_id": "6723c76428bd966c9e67338f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2378092,
"known_for_department": "Acting",
"name": "Shohei Komatsu",
"order": 530,
"original_name": "小松昌平",
"popularity": 6.792,
"profile_path": "/quFQzZn6p2IbKAmNoDs6woDCJOF.jpg",
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "67376d3bba29a051b3cc9741",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2572594,
"known_for_department": "Acting",
"name": "Tomohiro Ohmachi",
"order": 531,
"original_name": "大町知広",
"popularity": 6.345,
"profile_path": "/mku85ql9LtijMRrhqLbYK8WBEFJ.jpg",
"roles": [
{
"character": "Male Student 1 (voice)",
"credit_id": "67376d57e05823bd9c7c795d",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4111641,
"known_for_department": "Acting",
"name": "Kyohei Zenyoji",
"order": 532,
"original_name": "善養寺恭平",
"popularity": 1.193,
"profile_path": "/qoIC02REXgfS8cNNhdT4mwYnDks.jpg",
"roles": [
{
"character": "Male Student 2 (voice)",
"credit_id": "67376d6b80fda6e3e3746314",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1597103,
"known_for_department": "Acting",
"name": "Hina Kino",
"order": 533,
"original_name": "木野日菜",
"popularity": 29.128,
"profile_path": "/iwq0VvY3q4MPfn5ZTjsthhNcuyd.jpg",
"roles": [
{
"character": "Akusara's Daughter (voice)",
"credit_id": "67376e61ce49410032c1fc34",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1517732,
"known_for_department": "Acting",
"name": "Daisuke Takahashi",
"order": 534,
"original_name": "高橋大輔",
"popularity": 10.217,
"profile_path": "/sDuT3eITAUxkJ5tTjxGxokC19pH.jpg",
"roles": [
{
"character": "Aira's Father (voice)",
"credit_id": "67376eedce49410032c1fc74",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2923370,
"known_for_department": "Acting",
"name": "Seiyuu Fujiwara",
"order": 535,
"original_name": "藤原聖侑",
"popularity": 18.43,
"profile_path": "/fIM22LFxjzGbN1ZlmULeRHEKU9v.jpg",
"roles": [
{
"character": "Man (voice)",
"credit_id": "67376f57ba29a051b3cc9817",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3985900,
"known_for_department": "Acting",
"name": "Takeshi Miyajima",
"order": 537,
"original_name": "宮島岳史",
"popularity": 0.001,
"profile_path": "/webfozdOnWN4xuyQcZYptiH9Xex.jpg",
"roles": [
{
"character": "Teacher (voice)",
"credit_id": "673f80f8304efc9ad121229b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2359648,
"known_for_department": "Acting",
"name": "Tatsumaru Tachibana",
"order": 539,
"original_name": "橘龍丸",
"popularity": 4.265,
"profile_path": "/eShhW1W22SQuUwRaONnpzEZ5w6E.jpg",
"roles": [
{
"character": "Student B (voice)",
"credit_id": "6748b9f3cdece050080abaec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1324931,
"known_for_department": "Acting",
"name": "Naomi Ohzora",
"order": 542,
"original_name": "大空直美",
"popularity": 37.56,
"profile_path": "/qygKX6EtfvPdnPsMM0d41mPztP2.jpg",
"roles": [
{
"character": "Chiquitita (voice)",
"credit_id": "6751fe7372d1a8a59c29910c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1222054,
"known_for_department": "Acting",
"name": "Chiaki Takahashi",
"order": 543,
"original_name": "たかはし智秋",
"popularity": 27.762,
"profile_path": "/A0iBTBEYncQ3K9QVQAps0stDjaS.jpg",
"roles": [
{
"character": "Mr. Queen (voice)",
"credit_id": "6752001ffa107dc4ed403b0b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2603963,
"known_for_department": "Acting",
"name": "Kousuke Echigoya",
"order": 544,
"original_name": "越後屋コースケ",
"popularity": 11.915,
"profile_path": "/gZSWmroax3RdzlFgnBBvbgA6pMY.jpg",
"roles": [
{
"character": "Male Teacher (voice)",
"credit_id": "675200581234b99a9473f1df",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4980600,
"known_for_department": "Acting",
"name": "Kureha Maki",
"order": 545,
"original_name": "牧紅葉",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate A (voice)",
"credit_id": "675200cb72d1a8a59c29911a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2679566,
"known_for_department": "Acting",
"name": "Ayano Shibuya",
"order": 546,
"original_name": "渋谷彩乃",
"popularity": 5.905,
"profile_path": "/aXHt8uLQuKItanBKjj7X4sIVhpO.jpg",
"roles": [
{
"character": "Classmate B (voice)",
"credit_id": "675200f01234b99a9473f208",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2860044,
"known_for_department": "Acting",
"name": "Eriko Kadokura",
"order": 547,
"original_name": "角倉英里子",
"popularity": 1.805,
"profile_path": "/kZFvhlMq8oh59bIDpOOuzb6Du8M.jpg",
"roles": [
{
"character": "Classmate C (voice)",
"credit_id": "6752010b1234b99a9473f213",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2369259,
"known_for_department": "Acting",
"name": "Rikuya Yasuda",
"order": 548,
"original_name": "安田陸矢",
"popularity": 11.342,
"profile_path": "/eZCxGqkEibJkUEhLO9Xp4zNDlY3.jpg",
"roles": [
{
"character": "Classmate D (voice)",
"credit_id": "6752012980e5b8f0a7561afc",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3702222,
"known_for_department": "Acting",
"name": "Daichi Fujiwara",
"order": 549,
"original_name": "藤原大智",
"popularity": 2.162,
"profile_path": "/fk3ImXh6LGtTYfBuxTKHEOwvOhl.jpg",
"roles": [
{
"character": "Classmate E (voice)",
"credit_id": "675201464624397fa81162cb",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2644897,
"known_for_department": "Acting",
"name": "Serika Hiromatsu",
"order": 550,
"original_name": "弘松芹香",
"popularity": 4.413,
"profile_path": "/tZdFouOrpbrWiE42HMFDOrA4YJn.jpg",
"roles": [
{
"character": "Classmate F (voice)",
"credit_id": "675201f0ab37fcd3e8851368",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2530103,
"known_for_department": "Acting",
"name": "Hayato Furusawa",
"order": 551,
"original_name": "古沢勇人",
"popularity": 0.475,
"profile_path": "/qpG5NxjphFb8ud2u6v1nkXmQAF0.jpg",
"roles": [
{
"character": "Classmate G (voice)",
"credit_id": "6752021e8e033e9136dc74c7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3094118,
"known_for_department": "Acting",
"name": "Koji Marunaka",
"order": 555,
"original_name": "丸中康司",
"popularity": 1.264,
"profile_path": "/jlUXRtCnLJIuDGRurCGtWHvfgnY.jpg",
"roles": [
{
"character": "English Teacher (voice)",
"credit_id": "675bac2c591e61e1b0bf0ecf",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2481143,
"known_for_department": "Acting",
"name": "Kanon Amane",
"order": 557,
"original_name": "天希かのん",
"popularity": 4.827,
"profile_path": "/8DvXAQVIpW5XJbkVNCrMS6IcO4m.jpg",
"roles": [
{
"character": "Female Student B (voice)",
"credit_id": "675bac68b65c1a19cb964747",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1243817,
"known_for_department": "Acting",
"name": "Shirou Saitou",
"order": 559,
"original_name": "斎藤志郎",
"popularity": 4.015,
"profile_path": "/yJSrzULl9EuXI25E8REdIPY1Lkm.jpg",
"roles": [
{
"character": "Kito Kazuichi (voice)",
"credit_id": "676460168dc046b915a4fc3a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2381706,
"known_for_department": "Acting",
"name": "Shunichi Maki",
"order": 560,
"original_name": "真木駿一",
"popularity": 6.561,
"profile_path": "/ivESgftEqDgcHQlsbKdW9DYwuH7.jpg",
"roles": [
{
"character": "Kito Jumaniel (voice)",
"credit_id": "6764605d0c865f24891f6544",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2866200,
"known_for_department": "Acting",
"name": "Michitake Kikuchi",
"order": 561,
"original_name": "菊池通武",
"popularity": 4.763,
"profile_path": "/pi49MQHk9jnzJ9altMiiZVCOWIA.jpg",
"roles": [
{
"character": "Kito Norihikoichi (voice)",
"credit_id": "6764611984c93fe868ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3110539,
"known_for_department": "Acting",
"name": "Yusuke Sasaki",
"order": 562,
"original_name": "佐々木祐介",
"popularity": 1.24,
"profile_path": "/1PTlnypdfoquT6aYz0QWbxIoWPx.jpg",
"roles": [
{
"character": "Kito Jurian (voice)",
"credit_id": "676461810c865f24891f65ec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2787672,
"known_for_department": "Acting",
"name": "Yuki Tamai",
"order": 563,
"original_name": "玉井勇輝",
"popularity": 8.34,
"profile_path": "/jpkR0WMXEveDJq7TYBvOLKrNXSl.jpg",
"roles": [
{
"character": "Kito Jugenna (voice)",
"credit_id": "676461f40c865f24891f6610",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5129842,
"known_for_department": "Acting",
"name": "Mahana Yamasaki",
"order": 564,
"original_name": "山崎真花",
"popularity": 0.02,
"profile_path": "/7wUBIU2DJYiz2twQ2wJ0o5L1ukv.jpg",
"roles": [
{
"character": "Woman A (voice)",
"credit_id": "67646261b05011d6f3a4faf9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4776137,
"known_for_department": "Acting",
"name": "Azusa Tachibana",
"order": 565,
"original_name": "橘杏咲",
"popularity": 0.001,
"profile_path": "/kvDRRBhAyuXChu1sgBViEQpoBka.jpg",
"roles": [
{
"character": "Woman B (voice)",
"credit_id": "676462748856704350ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2812912,
"known_for_department": "Acting",
"name": "Shogo Sakata",
"order": 566,
"original_name": "坂田将吾",
"popularity": 17.43,
"profile_path": "/fRRPNBz3OCNRdmLdUTdpq7dGqxM.jpg",
"roles": [
{
"character": "Boy A (voice)",
"credit_id": "676462948856704350ae1f8e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2719917,
"known_for_department": "Acting",
"name": "Noriaki Kanze",
"order": 567,
"original_name": "観世智顕",
"popularity": 5.68,
"profile_path": "/oMtucEisqIrqRVrhIgdMfqusKY2.jpg",
"roles": [
{
"character": "Boy B (voice)",
"credit_id": "676462a80c865f24891f6644",
"episode_count": 1
}
],
"total_episode_count": 1
}
],
"crew": [
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 144663,
"jobs": [
{
"credit_id": "67043acc537446e220796bb7",
"episode_count": 12,
"job": "Art Designer"
}
],
"known_for_department": "Art",
"name": "Seiki Tamura",
"original_name": "田村せいき",
"popularity": 2.92,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 80936,
"jobs": [
{
"credit_id": "65f4f6741e259a017c4c2365",
"episode_count": 12,
"job": "Art Direction"
}
],
"known_for_department": "Art",
"name": "Junichi Higashi",
"original_name": "東潤一",
"popularity": 8.255,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2044776,
"jobs": [
{
"credit_id": "67043318508dfa7ba3796f0e",
"episode_count": 2,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Fuga Yamashiro",
"original_name": "山代風我",
"popularity": 4.616,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2900138,
"jobs": [
{
"credit_id": "6723c845c3f65a93a4501cc8",
"episode_count": 2,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Hiromi Nishiyama",
"original_name": "Hiromi Nishiyama",
"popularity": 0.727,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1496193,
"jobs": [
{
"credit_id": "67043ad84cf47c730f74051a",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yuta Murakami",
"original_name": "村上悠太",
"popularity": 3.518,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 2968407,
"jobs": [
{
"credit_id": "672d748dbe76b0644b3df1d6",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Nozomi Fukui",
"original_name": "Nozomi Fukui",
"popularity": 2.164,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 4079768,
"jobs": [
{
"credit_id": "67043adc3afc91a5f113aeed",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Kanata Baba",
"original_name": "馬場奏多",
"popularity": 0.479,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3419470,
"jobs": [
{
"credit_id": "67043ade174a1d5773797666",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Takayuki Kotani",
"original_name": "小谷隆之",
"popularity": 0.638,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3031211,
"jobs": [
{
"credit_id": "6711bba398f6a758cd54831e",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Daiki Yonemori",
"original_name": "Daiki Yonemori",
"popularity": 1.538,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1456789,
"jobs": [
{
"credit_id": "676760030b2fbb9dea5e31dd",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Art",
"name": "Shinsaku Sasaki",
"original_name": "笹木信作",
"popularity": 9.944,
"profile_path": "/gIjYF8vegOuvIZsfv2UzH8GMf4h.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 0,
"id": 4986619,
"jobs": [
{
"credit_id": "67043b217cfea6f2027404f4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Rui Nakayama",
"original_name": "中山瑠",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1956404,
"jobs": [
{
"credit_id": "6752027772d1a8a59c2991af",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Heo Jong",
"original_name": "Heo Jong",
"popularity": 4.964,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3556013,
"jobs": [
{
"credit_id": "67043ada174a1d5773797658",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Miki Kobayashi",
"original_name": "小林美希",
"popularity": 2.496,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3090000,
"jobs": [
{
"credit_id": "67377057e05823bd9c7c7a2d",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Shuto Enomoto",
"original_name": "Shuto Enomoto",
"popularity": 1.327,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1879426,
"jobs": [
{
"credit_id": "67043add3afc91a5f113aef4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Fuminao Akai",
"original_name": "赤井文尚",
"popularity": 1.046,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3213251,
"jobs": [
{
"credit_id": "67043ad9b4e3d1a4847407d1",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Jin Sakuma",
"original_name": "佐久間仁",
"popularity": 1.605,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3150722,
"jobs": [
{
"credit_id": "67043ad73afc91a5f113aee7",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Momoya Iwata",
"original_name": "岩田百代",
"popularity": 4.175,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3150713,
"jobs": [
{
"credit_id": "67043ae8537446e220796bc5",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Mari Ishikawa",
"original_name": "石川真理",
"popularity": 1.256,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3150725,
"jobs": [
{
"credit_id": "67043ad43d7b3c6c07797684",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yusuke Mizuno",
"original_name": "水野雄介",
"popularity": 2.089,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6748ba53d44c3bfa4618ce0a",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 1243640,
"jobs": [
{
"credit_id": "673f81a13f6b210e584223e9",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Directing",
"name": "Hiroshi Nishikiori",
"original_name": "錦織博",
"popularity": 11.078,
"profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 4079767,
"jobs": [
{
"credit_id": "67043adc3afc91a5f113aef1",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Yoshihiro Horigami",
"original_name": "堀上佳滉",
"popularity": 1.469,
"profile_path": "/f9PScyalh7jW0wY1s6md3E9LHSh.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 1,
"id": 3895737,
"jobs": [
{
"credit_id": "67043adab6f587ede813b08d",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Kanako Abe",
"original_name": "安部夏菜子",
"popularity": 1.031,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 3221771,
"jobs": [
{
"credit_id": "671a7d0be833d92ef05fe61b",
"episode_count": 1,
"job": "Storyboard Artist"
}
],
"known_for_department": "Visual Effects",
"name": "mokochan",
"original_name": "モコちゃん",
"popularity": 1.267,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2160240,
"jobs": [
{
"credit_id": "67043ad63afc91a5f113aee4",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Shintaro Akiyama",
"original_name": "秋山慎太郎",
"popularity": 2.47,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2160239,
"jobs": [
{
"credit_id": "67043ad6174a1d5773797653",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Masahiro Abe",
"original_name": "阿部真大",
"popularity": 5.394,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 0,
"id": 3895742,
"jobs": [
{
"credit_id": "67043adb174a1d577379765d",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "Ayumu Sakurai",
"original_name": "桜井歩",
"popularity": 0.714,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Art",
"gender": 2,
"id": 2159667,
"jobs": [
{
"credit_id": "67043ad5b4e3d1a4847407cc",
"episode_count": 1,
"job": "Background Designer"
}
],
"known_for_department": "Art",
"name": "So Senoo",
"original_name": "妹尾想",
"popularity": 2.659,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Camera",
"gender": 2,
"id": 1632175,
"jobs": [
{
"credit_id": "65f4f6781e259a017c4c2370",
"episode_count": 12,
"job": "Director of Photography"
}
],
"known_for_department": "Camera",
"name": "Kazuto Izumita",
"original_name": "出水田和人",
"popularity": 1.524,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2044776,
"jobs": [
{
"credit_id": "6564bbc6706e5600fe04a2cb",
"episode_count": 13,
"job": "Series Director"
},
{
"credit_id": "670433187cfea6f2027402a3",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Fuga Yamashiro",
"original_name": "山代風我",
"popularity": 4.616,
"profile_path": null,
"total_episode_count": 14
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3221771,
"jobs": [
{
"credit_id": "671a7cfca4ac8a432c5c11b0",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "670432dfb4e3d1a484740583",
"episode_count": 12,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "mokochan",
"original_name": "モコちゃん",
"popularity": 1.267,
"profile_path": null,
"total_episode_count": 13
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3089980,
"jobs": [
{
"credit_id": "67676007f926be03cc74e94f",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "6704331a508dfa7ba3796f14",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Directing",
"name": "Toru Hasutani",
"original_name": "蓮谷トオル",
"popularity": 0.713,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6748ba5afa8873917ff7b079",
"episode_count": 1,
"job": "Director"
},
{
"credit_id": "6704331b508dfa7ba3796f1a",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2313366,
"jobs": [
{
"credit_id": "676463928856704350ae1fe2",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Tetsuya Wakano",
"original_name": "Tetsuya Wakano",
"popularity": 1.399,
"profile_path": "/1c6plg3VZ2UT9UIIcIlQ8xHoInq.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1491875,
"jobs": [
{
"credit_id": "6767603bf926be03cc74e963",
"episode_count": 1,
"job": "Series Director"
}
],
"known_for_department": "Visual Effects",
"name": "Abel Góngora",
"original_name": "Abel Góngora",
"popularity": 5.827,
"profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1243640,
"jobs": [
{
"credit_id": "673f81963f6b210e584223e0",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Hiroshi Nishikiori",
"original_name": "錦織博",
"popularity": 11.078,
"profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 4381855,
"jobs": [
{
"credit_id": "6704331ab4e3d1a48474059d",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Blues Lee",
"original_name": "Blues Lee",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 1,
"id": 2968407,
"jobs": [
{
"credit_id": "672d747ebe76b0644b3df1cb",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Nozomi Fukui",
"original_name": "Nozomi Fukui",
"popularity": 2.164,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 2900138,
"jobs": [
{
"credit_id": "6723c83b1df70f7920ff087c",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Hiromi Nishiyama",
"original_name": "Hiromi Nishiyama",
"popularity": 0.727,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 3344603,
"jobs": [
{
"credit_id": "6736a39d021223a874c5fc1a",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Kotaro Matsunaga",
"original_name": "Kotaro Matsunaga",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 1835257,
"jobs": [
{
"credit_id": "67087652d357a2103996950d",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Visual Effects",
"name": "Rushio Moriyama",
"original_name": "Rushio Moriyama",
"popularity": 1.882,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 1,
"id": 3291884,
"jobs": [
{
"credit_id": "675202998af6d3feb3aff8b3",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Directing",
"name": "Kayona Yamada",
"original_name": "山田加余仲",
"popularity": 0.738,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 0,
"id": 2936285,
"jobs": [
{
"credit_id": "6704331cb4e3d1a4847405a3",
"episode_count": 1,
"job": "Assistant Director"
}
],
"known_for_department": "Visual Effects",
"name": "Gan Haotian",
"original_name": "甘浩天",
"popularity": 0.929,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Directing",
"gender": 2,
"id": 3031211,
"jobs": [
{
"credit_id": "6711bb968e844657b7fae8a7",
"episode_count": 1,
"job": "Director"
}
],
"known_for_department": "Visual Effects",
"name": "Daiki Yonemori",
"original_name": "Daiki Yonemori",
"popularity": 1.538,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Editing",
"gender": 1,
"id": 2574520,
"jobs": [
{
"credit_id": "6704324bb6f587ede813ad4e",
"episode_count": 12,
"job": "Assistant Editor"
}
],
"known_for_department": "Editing",
"name": "Misaki Enokida",
"original_name": "榎田美咲",
"popularity": 3.814,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 2,
"id": 4986515,
"jobs": [
{
"credit_id": "67043266b6f587ede813ad72",
"episode_count": 12,
"job": "Online Editor"
}
],
"known_for_department": "Editing",
"name": "Reo Nakamura",
"original_name": "中村怜央",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 2,
"id": 1570184,
"jobs": [
{
"credit_id": "65f4f67ceb14fa017cb997fd",
"episode_count": 12,
"job": "Editor"
}
],
"known_for_department": "Editing",
"name": "Kiyoshi Hirose",
"original_name": "廣瀬清志",
"popularity": 4.63,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Editing",
"gender": 1,
"id": 3243393,
"jobs": [
{
"credit_id": "670432513d7b3c6c0779735d",
"episode_count": 12,
"job": "Online Editor"
}
],
"known_for_department": "Editing",
"name": "Kasumi Shibata",
"original_name": "柴田香澄",
"popularity": 1.076,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3200954,
"jobs": [
{
"credit_id": "6703dea818a8b49d3213983c",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Tatsuya Ishikawa",
"original_name": "石川達也",
"popularity": 2.364,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3723106,
"jobs": [
{
"credit_id": "6703dea7a5f29f43a573eac2",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Soichiro Saito",
"original_name": "斉藤壮一郎",
"popularity": 1.805,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 1491866,
"jobs": [
{
"credit_id": "6703de04a5f29f43a573ea7a",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Directing",
"name": "Eunyoung Choi",
"original_name": "최은영",
"popularity": 8.89,
"profile_path": "/rsJaoDO9eL7d3Vv2jkyHJoXMjh.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2801613,
"jobs": [
{
"credit_id": "6703ddfe3d7b3c6c07795c94",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Yoshihisa Heishi",
"original_name": "瓶子吉久",
"popularity": 2.686,
"profile_path": "/1nKceWUfKlTmRsQ4QzPCmqx4ceX.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 1816778,
"jobs": [
{
"credit_id": "6703dea318a8b49d3213982c",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Toshihiro Maeda",
"original_name": "前田俊博",
"popularity": 8.337,
"profile_path": "/uEKRPogU0Z1Lbgy3NWoxeTqX41T.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2431671,
"jobs": [
{
"credit_id": "6703dea84cf47c730f73f08d",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroshi Muto",
"original_name": "武藤大司",
"popularity": 0.171,
"profile_path": "/u8miFudieUNRXPiEPntNUsGcXYg.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3286707,
"jobs": [
{
"credit_id": "6703dea4b4e3d1a48473eefe",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Tatsuro Hayashi",
"original_name": "林辰朗",
"popularity": 1.033,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 4539931,
"jobs": [
{
"credit_id": "6703ddf0a5f29f43a573ea5d",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Yusuke Arai",
"original_name": "新居祐介",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 1257407,
"jobs": [
{
"credit_id": "6703ddf43d7b3c6c07795c85",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Atsuhiro Iwakami",
"original_name": "岩上敦宏",
"popularity": 4.839,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2044779,
"jobs": [
{
"credit_id": "6703dea63d7b3c6c07795cf6",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Kohei Sakita",
"original_name": "崎田康平",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2271902,
"jobs": [
{
"credit_id": "6703dea53afc91a5f11396ca",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroshi Kamei",
"original_name": "亀井博司",
"popularity": 1.564,
"profile_path": "/cxxyQF5Bdo2fhaS25HytXJBtE1Z.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 1048416,
"jobs": [
{
"credit_id": "6703debe508dfa7ba3795aa9",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Yoshiko Makabe",
"original_name": "真壁佳子",
"popularity": 0.243,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 4985808,
"jobs": [
{
"credit_id": "6703de14b6f587ede8139b52",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Mihoko Shibata",
"original_name": "柴田三穂子",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3103118,
"jobs": [
{
"credit_id": "6703dea4508dfa7ba3795aa3",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Hayato Saga",
"original_name": "嵯峨隼人",
"popularity": 2.449,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 1,
"id": 3499820,
"jobs": [
{
"credit_id": "6703dea93d7b3c6c07795cf9",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Takako Yamamori",
"original_name": "山守貴子",
"popularity": 0.897,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 3555794,
"jobs": [
{
"credit_id": "6703ddfa3d7b3c6c07795c88",
"episode_count": 12,
"job": "Executive Producer"
}
],
"known_for_department": "Production",
"name": "Tatsunobu Sato",
"original_name": "佐藤龍伸",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Production",
"gender": 2,
"id": 2381689,
"jobs": [
{
"credit_id": "6703dea63d7b3c6c07795cf3",
"episode_count": 12,
"job": "Producer"
}
],
"known_for_department": "Production",
"name": "Hiroyuki Aoi",
"original_name": "青井宏之",
"popularity": 2.157,
"profile_path": "/bSX92tNZtKsGtS56EazzBqbNYba.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3470015,
"jobs": [
{
"credit_id": "6703de92b4e3d1a48473eee8",
"episode_count": 12,
"job": "Sound Mixer"
}
],
"known_for_department": "Sound",
"name": "Hiroaki Ota",
"original_name": "太田泰明",
"popularity": 1.7,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3304217,
"jobs": [
{
"credit_id": "66781fd26573606ef673275c",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "DJ Matsunaga",
"original_name": "DJ松永",
"popularity": 4.918,
"profile_path": "/A1HubDJZBAxKwu38znUJjndpSEW.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 1,
"id": 3523367,
"jobs": [
{
"credit_id": "66c4599e6c67ac7e7b3b1e1f",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "ACA-Ne",
"original_name": "ずっと真夜中でいいのに",
"popularity": 1.473,
"profile_path": "/ceF3sRCzTbNheksCq7osAp8ubHW.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 2285493,
"jobs": [
{
"credit_id": "6703de8c3d7b3c6c07795ce5",
"episode_count": 12,
"job": "Sound Effects"
}
],
"known_for_department": "Sound",
"name": "Shota Yaso",
"original_name": "八十正太",
"popularity": 4.937,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 3304216,
"jobs": [
{
"credit_id": "66781fe02dbc639f16f3f5e8",
"episode_count": 12,
"job": "Theme Song Performance"
}
],
"known_for_department": "Sound",
"name": "R-Shitei",
"original_name": "R-指定",
"popularity": 23.908,
"profile_path": "/jAKabjhF3IaQDBrx4aWlAKUrZnF.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 0,
"id": 3434674,
"jobs": [
{
"credit_id": "670432847cfea6f202740219",
"episode_count": 12,
"job": "Foley Artist"
}
],
"known_for_department": "Sound",
"name": "Takumi Hamamoto",
"original_name": "濱本拓海",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 1,
"id": 1555482,
"jobs": [
{
"credit_id": "65f4f681e039f10164026b55",
"episode_count": 12,
"job": "Sound Director"
}
],
"known_for_department": "Sound",
"name": "Eriko Kimura",
"original_name": "木村絵理子",
"popularity": 5.915,
"profile_path": "/yu3PPgzxVy8f8Qri9mdOTWMPhan.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Sound",
"gender": 2,
"id": 1677276,
"jobs": [
{
"credit_id": "6564b9db8f26bc00ff6ff2b1",
"episode_count": 12,
"job": "Original Music Composer"
}
],
"known_for_department": "Sound",
"name": "Kensuke Ushio",
"original_name": "牛尾憲輔",
"popularity": 8.39,
"profile_path": "/A3FnNDo5WKMnAGHPlAMpRED4s9j.jpg",
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1144163,
"jobs": [
{
"credit_id": "6564b9c8a35c8e011bfda261",
"episode_count": 12,
"job": "Character Designer"
},
{
"credit_id": "67043319508dfa7ba3796f11",
"episode_count": 2,
"job": "Supervising Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Naoyuki Onda",
"original_name": "恩田尚之",
"popularity": 11.636,
"profile_path": null,
"total_episode_count": 14
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1491875,
"jobs": [
{
"credit_id": "670432b87cfea6f202740222",
"episode_count": 12,
"job": "Opening/Ending Animation"
},
{
"credit_id": "670433aab6f587ede813aea3",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Abel Góngora",
"original_name": "Abel Góngora",
"popularity": 5.827,
"profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg",
"total_episode_count": 13
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 40344,
"jobs": [
{
"credit_id": "65f4f66fd4d509017daa6652",
"episode_count": 12,
"job": "Color Designer"
}
],
"known_for_department": "Visual Effects",
"name": "Satoshi Hashimoto",
"original_name": "橋本賢",
"popularity": 13.793,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 4690783,
"jobs": [
{
"credit_id": "6703de6b3d7b3c6c07795cd2",
"episode_count": 12,
"job": "Color Designer"
}
],
"known_for_department": "Visual Effects",
"name": "Makiho Kondo",
"original_name": "近藤牧穂",
"popularity": 0.538,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 1297517,
"jobs": [
{
"credit_id": "6564bbe6d9554b011d6420d0",
"episode_count": 12,
"job": "Creature Design"
}
],
"known_for_department": "Visual Effects",
"name": "Yoshimichi Kameda",
"original_name": "亀田祥倫",
"popularity": 12.762,
"profile_path": null,
"total_episode_count": 12
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2844419,
"jobs": [
{
"credit_id": "6704331fb4e3d1a4847405b5",
"episode_count": 2,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Shinobu Isoko",
"original_name": "五十子忍",
"popularity": 4.146,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3095251,
"jobs": [
{
"credit_id": "6704331eb6f587ede813ae1a",
"episode_count": 2,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kotomi Ota",
"original_name": "太田琴美",
"popularity": 0.344,
"profile_path": "/kWLoB4XJ7oCRdcy5gHenqeoH4bv.jpg",
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2936285,
"jobs": [
{
"credit_id": "6704331d508dfa7ba3796f20",
"episode_count": 1,
"job": "Key Animation"
},
{
"credit_id": "6704331db6f587ede813ae17",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Gan Haotian",
"original_name": "甘浩天",
"popularity": 0.929,
"profile_path": null,
"total_episode_count": 2
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3095189,
"jobs": [
{
"credit_id": "6704331fb4e3d1a4847405b8",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Yusaku Nagahama",
"original_name": "長濱佑作",
"popularity": 2.074,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3090000,
"jobs": [
{
"credit_id": "673770d880fda6e3e3746433",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Shuto Enomoto",
"original_name": "Shuto Enomoto",
"popularity": 1.327,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2815799,
"jobs": [
{
"credit_id": "6704338e174a1d5773797472",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "MYOUN",
"original_name": "묘운",
"popularity": 6.447,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2933092,
"jobs": [
{
"credit_id": "6704331e508dfa7ba3796f23",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Masamichi Ishiyama",
"original_name": "石山正修",
"popularity": 2.772,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3739026,
"jobs": [
{
"credit_id": "67043ae1b4e3d1a4847407d6",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Keiko Sasaki",
"original_name": "佐々木景子",
"popularity": 0.433,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2910064,
"jobs": [
{
"credit_id": "6704332ab6f587ede813ae3e",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Akihito Sudo",
"original_name": "須藤瑛仁",
"popularity": 2.801,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3204408,
"jobs": [
{
"credit_id": "67043322b6f587ede813ae24",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Mark Corcoran",
"original_name": "コーコラン・マーク",
"popularity": 0.567,
"profile_path": "/eygXbiOmdqulHddNcC27Bxzxg7h.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 4353617,
"jobs": [
{
"credit_id": "67043327b6f587ede813ae38",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Qiu Chengrui",
"original_name": "丘城鋭",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2756604,
"jobs": [
{
"credit_id": "670433264cf47c730f740240",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Miki Kaneko",
"original_name": "金子美紀",
"popularity": 2.189,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3488017,
"jobs": [
{
"credit_id": "67043ae118a8b49d3213adae",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Akane Ueda",
"original_name": "上田茜",
"popularity": 1.115,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3054960,
"jobs": [
{
"credit_id": "67043323b6f587ede813ae27",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "azoura",
"original_name": "azoura",
"popularity": 1.713,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2044754,
"jobs": [
{
"credit_id": "67043321508dfa7ba3796f34",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Shoko Nishigaki",
"original_name": "西垣庄子",
"popularity": 1.81,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2855374,
"jobs": [
{
"credit_id": "671a7d472685cb6563c0b075",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Tomomi Noda",
"original_name": "Tomomi Noda",
"popularity": 1.225,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 5143916,
"jobs": [
{
"credit_id": "676ee7e5f9454eeb1d92abb7",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Zhou Xuan",
"original_name": "周玄",
"popularity": 0.035,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3916658,
"jobs": [
{
"credit_id": "67043363cc904f12d913ae0e",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Yue",
"original_name": "ゆえ",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2702912,
"jobs": [
{
"credit_id": "67043332b6f587ede813ae41",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Nick McKergow",
"original_name": "Nick McKergow",
"popularity": 0.544,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3818550,
"jobs": [
{
"credit_id": "670433b5cc904f12d913ae47",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Nonno",
"original_name": "のんの",
"popularity": 0.323,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3005017,
"jobs": [
{
"credit_id": "67043328508dfa7ba3796f3a",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Liu Yuchen",
"original_name": "劉禹辰",
"popularity": 0.579,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3319186,
"jobs": [
{
"credit_id": "67043325508dfa7ba3796f37",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kinya Rikitoku",
"original_name": "力徳欽也",
"popularity": 2.095,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3209200,
"jobs": [
{
"credit_id": "6704332a4cf47c730f740244",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "nasiijau",
"original_name": "nasiijau",
"popularity": 0.113,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2182422,
"jobs": [
{
"credit_id": "671a7d79a4ac8a432c5c11ea",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Yumi Shimojo",
"original_name": "下條祐未",
"popularity": 4.009,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3042857,
"jobs": [
{
"credit_id": "67043adf508dfa7ba3797228",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Camera",
"name": "Noriyuki Ueda",
"original_name": "上田程之",
"popularity": 1.235,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2520233,
"jobs": [
{
"credit_id": "6704331cb4e3d1a4847405a0",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Kenji Zemba",
"original_name": "前場健次",
"popularity": 2.503,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 2809667,
"jobs": [
{
"credit_id": "67043325b6f587ede813ae31",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Masaki Hayano",
"original_name": "早野正樹",
"popularity": 2.041,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3056593,
"jobs": [
{
"credit_id": "67043324b6f587ede813ae2d",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Yuki Ito",
"original_name": "伊藤優希",
"popularity": 5.097,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 3352626,
"jobs": [
{
"credit_id": "67043323b6f587ede813ae2a",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "momofuji",
"original_name": "百藤",
"popularity": 0.723,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3508322,
"jobs": [
{
"credit_id": "67043328b6f587ede813ae3b",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kotaro Okubo",
"original_name": "大久保洸太郎",
"popularity": 1.114,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 2856634,
"jobs": [
{
"credit_id": "671a7d6827bd57d91f62685c",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Chan Yan",
"original_name": "Chan Yan",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 4986525,
"jobs": [
{
"credit_id": "67043350b6f587ede813ae72",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Genta Ishimori",
"original_name": "石守源太",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 2,
"id": 3326157,
"jobs": [
{
"credit_id": "671a7c2827bd57d91f6267aa",
"episode_count": 1,
"job": "Key Animation"
}
],
"known_for_department": "Visual Effects",
"name": "Kyohei Ebata",
"original_name": "江端恭平",
"popularity": 3.176,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 0,
"id": 4381855,
"jobs": [
{
"credit_id": "6704331bb6f587ede813ae13",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Blues Lee",
"original_name": "Blues Lee",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3156687,
"jobs": [
{
"credit_id": "67087746d357a210399695af",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Keika Ushimaru",
"original_name": "牛丸圭華",
"popularity": 1.67,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 3243194,
"jobs": [
{
"credit_id": "67043ae0508dfa7ba379722b",
"episode_count": 1,
"job": "Compositing Artist"
}
],
"known_for_department": "Visual Effects",
"name": "Yuma Akasu",
"original_name": "赤須由麻",
"popularity": 0.551,
"profile_path": null,
"total_episode_count": 1
},
{
"adult": false,
"department": "Visual Effects",
"gender": 1,
"id": 2520222,
"jobs": [
{
"credit_id": "67043320508dfa7ba3796f27",
"episode_count": 1,
"job": "Animation Director"
}
],
"known_for_department": "Visual Effects",
"name": "Mari Motohashi",
"original_name": "本橋茉里",
"popularity": 1.708,
"profile_path": "/A12iiRiKiquRwIECRFdXnfutkfu.jpg",
"total_episode_count": 1
},
{
"adult": false,
"department": "Writing",
"gender": 2,
"id": 1491863,
"jobs": [
{
"credit_id": "6564b9a73679a10974dab748",
"episode_count": 12,
"job": "Series Composition"
},
{
"credit_id": "670433177cfea6f2027402a0",
"episode_count": 12,
"job": "Writer"
}
],
"known_for_department": "Writing",
"name": "Hiroshi Seko",
"original_name": "瀬古浩司",
"popularity": 14.03,
"profile_path": "/zdTUsjMPFEZhygVdKs5rABtHJyk.jpg",
"total_episode_count": 24
},
{
"adult": false,
"department": "Writing",
"gender": 2,
"id": 4399732,
"jobs": [
{
"credit_id": "665fa9d243ba5474df0906d6",
"episode_count": 12,
"job": "Original Concept"
}
],
"known_for_department": "Writing",
"name": "Yukinobu Tatsu",
"original_name": "龍幸伸",
"popularity": 0.001,
"profile_path": null,
"total_episode_count": 12
}
],
"id": 240411
}Path Parameters
Query Parameters
Example:
"en-US"
Response
200 - application/json
Agg Credits
Show child attributes
Show child attributes
Example:
[
{
"adult": false,
"gender": 1,
"id": 2363904,
"known_for_department": "Acting",
"name": "Shion Wakayama",
"order": 0,
"original_name": "若山詩音",
"popularity": 29.234,
"profile_path": "/b697ggFreuliEfl4TjLgxhJCQXr.jpg",
"roles": [
{
"character": "Momo Ayase (voice)",
"credit_id": "657d6dd61da7a6076d2a42d6",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 2,
"id": 1256603,
"known_for_department": "Acting",
"name": "Natsuki Hanae",
"order": 1,
"original_name": "花江夏樹",
"popularity": 49.726,
"profile_path": "/alTb0DlcPIbcwM08WSmxFai58sd.jpg",
"roles": [
{
"character": "Ken 'Okarun' Takakura (voice)",
"credit_id": "657d6e195c5cc806b8960c33",
"episode_count": 13
}
],
"total_episode_count": 13
},
{
"adult": false,
"gender": 1,
"id": 65510,
"known_for_department": "Acting",
"name": "Mayumi Tanaka",
"order": 2,
"original_name": "田中真弓",
"popularity": 62.954,
"profile_path": "/by4t1tYtEXsfbFj9TvOjozBmQla.jpg",
"roles": [
{
"character": "Turbo Granny (voice)",
"credit_id": "670ad44cb15d97b1a93c2c0a",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 24651,
"known_for_department": "Acting",
"name": "Nana Mizuki",
"order": 3,
"original_name": "水樹奈々",
"popularity": 49.396,
"profile_path": "/1h4C1kz8mziHmiB91MliTDHwgoh.jpg",
"roles": [
{
"character": "Seiko (Dodoria Santa) (voice)",
"credit_id": "671a7b406d6b705dc8713514",
"episode_count": 12
}
],
"total_episode_count": 12
},
{
"adult": false,
"gender": 1,
"id": 992869,
"known_for_department": "Acting",
"name": "Ayane Sakura",
"order": 519,
"original_name": "佐倉綾音",
"popularity": 58.232,
"profile_path": "/yPbTmntASE9psPIMhNGU5oo6vIH.jpg",
"roles": [
{
"character": "Aira Shiratori (voice)",
"credit_id": "6723c3ab1d0b571b8a5c5870",
"episode_count": 7
}
],
"total_episode_count": 7
},
{
"adult": false,
"gender": 1,
"id": 2208367,
"known_for_department": "Acting",
"name": "Kaori Maeda",
"order": 500,
"original_name": "前田佳織里",
"popularity": 29.166,
"profile_path": "/i1yTlI3z5BvIuXQ26XtJ0PyLEAX.jpg",
"roles": [
{
"character": "Miko (voice)",
"credit_id": "66ff71bee480149146850afc",
"episode_count": 6
}
],
"total_episode_count": 6
},
{
"adult": false,
"gender": 1,
"id": 1647636,
"known_for_department": "Acting",
"name": "Miyu Tomita",
"order": 501,
"original_name": "富田美憂",
"popularity": 38.374,
"profile_path": "/rSR17l4HdchLkhpRuAZbGbXNmUS.jpg",
"roles": [
{
"character": "Muko (voice)",
"credit_id": "66ff71c8e480149146850b00",
"episode_count": 5
}
],
"total_episode_count": 5
},
{
"adult": false,
"gender": 1,
"id": 1762671,
"known_for_department": "Acting",
"name": "Aya Yamane",
"order": 520,
"original_name": "山根綺",
"popularity": 21.728,
"profile_path": "/va0XORY6VchoceyqywJ4KxsVN5s.jpg",
"roles": [
{
"character": "Tsubame (voice)",
"credit_id": "6723c48318827a9329f1b63b",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2649314,
"known_for_department": "Acting",
"name": "Natsu Yorita",
"order": 521,
"original_name": "依田菜津",
"popularity": 18.774,
"profile_path": "/gOLAf6UJYz2YTobH00jQHNzSLqT.jpg",
"roles": [
{
"character": "Anzu (voice)",
"credit_id": "6723c53818827a9329f1b699",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2261331,
"known_for_department": "Acting",
"name": "Koji Seki",
"order": 527,
"original_name": "関幸司",
"popularity": 9.879,
"profile_path": "/lOPiuf6BGq3wpXFiVc5o6jvFu3J.jpg",
"roles": [
{
"character": "TV Station Producer (voice)",
"credit_id": "6711ba4725c70b8b1d678dff",
"episode_count": 1
},
{
"character": "Male Client (voice)",
"credit_id": "671a7c86e833d92ef05fe5f1",
"episode_count": 1
},
{
"character": "Male Teacher (voice)",
"credit_id": "675babfa369ac03099eb062e",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 1,
"id": 2724028,
"known_for_department": "Acting",
"name": "Yukiko Motoyoshi",
"order": 528,
"original_name": "元吉有希子",
"popularity": 7.157,
"profile_path": "/1v2NKcXE0i5YtMHnYsmPQrZRUss.jpg",
"roles": [
{
"character": "Female Servant (voice)",
"credit_id": "6711bb4c8e844657b7fae865",
"episode_count": 1
},
{
"character": "Receptionist (voice)",
"credit_id": "671a7c0b4542e371fe0a56c2",
"episode_count": 1
},
{
"character": "Female Student A (voice)",
"credit_id": "675bac5316e963ddaf0dd525",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 84507,
"known_for_department": "Acting",
"name": "Kazuya Nakai",
"order": 533,
"original_name": "中井和哉",
"popularity": 45.963,
"profile_path": "/78PKViY7brjF3AJI8h3tXyUyYT7.jpg",
"roles": [
{
"character": "Serpoians (voice)",
"credit_id": "670ad345bbb1a9e81c61ade8",
"episode_count": 2
},
{
"character": "Serpoian A / Serpoian B / Serpoian C (voice)",
"credit_id": "6763b340e14e3bcfa74a4383",
"episode_count": 1
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 90567,
"known_for_department": "Acting",
"name": "Tomokazu Seki",
"order": 536,
"original_name": "関智一",
"popularity": 33.265,
"profile_path": "/jGQC9KkfNMh2wBgizw81GLX2KN2.jpg",
"roles": [
{
"character": "Dover Demon (voice)",
"credit_id": "673f806b4dec1f98b29bf3b0",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 1324666,
"known_for_department": "Acting",
"name": "Kaito Ishikawa",
"order": 541,
"original_name": "石川界人",
"popularity": 46.169,
"profile_path": "/fzjIkotjUHHs3wgftM9tqdsG8ph.jpg",
"roles": [
{
"character": "Jin 'Jiji' Enjouji (voice)",
"credit_id": "6751fddcab6cc3a4c8fc6cb9",
"episode_count": 3
}
],
"total_episode_count": 3
},
{
"adult": false,
"gender": 2,
"id": 2934417,
"known_for_department": "Acting",
"name": "Koseki Kogure",
"order": 527,
"original_name": "木暮晃石",
"popularity": 6.791,
"profile_path": "/a4nQ5seWDMMSDzW37MkRpk0ZnTE.jpg",
"roles": [
{
"character": "Student C (voice)",
"credit_id": "6748ba05169339d34cf114c1",
"episode_count": 1
},
{
"character": "Couple Man (voice)",
"credit_id": "671a7b994542e371fe0a56a7",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 101913,
"known_for_department": "Acting",
"name": "Kikuko Inoue",
"order": 529,
"original_name": "井上喜久子",
"popularity": 20.939,
"profile_path": "/pPxGWy53FgYSC79zmxblmHe0gI3.jpg",
"roles": [
{
"character": "Acrobatic Silky (voice)",
"credit_id": "67376c8580fda6e3e37462b0",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 3594209,
"known_for_department": "Acting",
"name": "Tomoya Ito",
"order": 533,
"original_name": "井藤智哉",
"popularity": 0.892,
"profile_path": "/kVrJkr313KH7VgIJDzLnC9WFHd4.jpg",
"roles": [
{
"character": "Male Student D (voice)",
"credit_id": "6723c781826fe5799cc4e9c9",
"episode_count": 1
},
{
"character": "Student A (voice)",
"credit_id": "6748b9e2d44c3bfa4618cde1",
"episode_count": 1
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 144655,
"known_for_department": "Acting",
"name": "Tomokazu Sugita",
"order": 552,
"original_name": "杉田智和",
"popularity": 37.34,
"profile_path": "/cv5zuPZySNsHXu24pjKLYCRzJ2J.jpg",
"roles": [
{
"character": "Taro (voice)",
"credit_id": "675bab11ab17a5e30487b005",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 1,
"id": 129960,
"known_for_department": "Acting",
"name": "Fumi Hirano",
"order": 553,
"original_name": "平野文",
"popularity": 23.982,
"profile_path": "/nP3c7cxj4iCHKCrlJtxtnsF3prS.jpg",
"roles": [
{
"character": "Hana (voice)",
"credit_id": "675bab33b65c1a19cb964705",
"episode_count": 2
}
],
"total_episode_count": 2
},
{
"adult": false,
"gender": 2,
"id": 1991244,
"known_for_department": "Acting",
"name": "Ryunosuke Watanuki",
"order": 502,
"original_name": "綿貫竜之介",
"popularity": 21.168,
"profile_path": "/cJBw6vHWD4u9dAdBFA7CUqKUj9A.jpg",
"roles": [
{
"character": "Momo's Boyfriend (voice)",
"credit_id": "66ff71cf7830c1301e7ca9af",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3106016,
"known_for_department": "Acting",
"name": "Hikaru Tanaka",
"order": 503,
"original_name": "田中光",
"popularity": 9.512,
"profile_path": "/jKLQhWJ9ZW32TKK9NN3pksf39XX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "66ff71d67830c1301e7ca9b2",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4979890,
"known_for_department": "Acting",
"name": "Seitaro Taniguchi",
"order": 504,
"original_name": "谷口誠太郎",
"popularity": 0.001,
"profile_path": "/aPLluDuanhSK9qCtlQhPNDavO0l.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "66ff71df6fc74e5756f7f433",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3271011,
"known_for_department": "Acting",
"name": "Satomi Kobashi",
"order": 505,
"original_name": "小橋里美",
"popularity": 1.093,
"profile_path": "/m8JQQVWvdchgot7L7WSc2556u2F.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71e76fc74e5756f7f439",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2862191,
"known_for_department": "Acting",
"name": "Mayuko Kazama",
"order": 506,
"original_name": "風間万裕子",
"popularity": 15.951,
"profile_path": "/lWRGpyrrbq9KmBZc1yjeS1EwXkd.jpg",
"roles": [
{
"character": "Elementary School Boy (voice)",
"credit_id": "66ff71ef6fc74e5756f7f440",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 126690,
"known_for_department": "Acting",
"name": "Ryuuzaburou Ootomo",
"order": 507,
"original_name": "大友龍三郎",
"popularity": 24.872,
"profile_path": "/fk3ebYlTjILTXkzJNvOi3SRUNb6.jpg",
"roles": [
{
"character": "Flatwoods Monster (voice)",
"credit_id": "670875df6adf6620212ff03c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3188064,
"known_for_department": "Acting",
"name": "Hayato Kashiwazaki",
"order": 509,
"original_name": "柏崎隼史",
"popularity": 1.45,
"profile_path": "/zNEION3yYTdX7QD0GwPHpVBoquh.jpg",
"roles": [
{
"character": "Shoma (voice)",
"credit_id": "6711ba0f1f0ea4714edbd801",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3302611,
"known_for_department": "Acting",
"name": "Naoki Tamanoi",
"order": 511,
"original_name": "玉野井直樹",
"popularity": 1.071,
"profile_path": "/7ggnBHTwhybh9EsBisu3lYuJSdN.jpg",
"roles": [
{
"character": "Taxi Driver (voice)",
"credit_id": "6711baed25c70b8b1d678e39",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3484939,
"known_for_department": "Acting",
"name": "Shitan En",
"order": 513,
"original_name": "閻子丹",
"popularity": 4.221,
"profile_path": "/jJm7ILHumo0vy2JNotAdGAQcigt.jpg",
"roles": [
{
"character": "Assistant Producer (voice)",
"credit_id": "6713fd8ac6e304096195f363",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 5010097,
"known_for_department": "Acting",
"name": "Emi Taniguchi",
"order": 514,
"original_name": "谷口恵美",
"popularity": 0.001,
"profile_path": "/tpHBOA22CCkNZk09yiLEY7T78gL.jpg",
"roles": [
{
"character": "TV Announcer (voice)",
"credit_id": "6713fe832bbba65f7b10ebe1",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2882581,
"known_for_department": "Acting",
"name": "Ruka Yashiro",
"order": 516,
"original_name": "屋代瑠花",
"popularity": 1.381,
"profile_path": "/wNJzkcMjHL6mUtk5Qu2PjG33J35.jpg",
"roles": [
{
"character": "Couple Woman (voice)",
"credit_id": "671a7bc62685cb6563c0afb9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1779969,
"known_for_department": "Acting",
"name": "Masumi Tazawa",
"order": 522,
"original_name": "田澤茉純",
"popularity": 4.54,
"profile_path": "/p0Qld9ey2zZEL2edgeWAY9djisQ.jpg",
"roles": [
{
"character": "Momo's Friend A (voice)",
"credit_id": "6723c5af82658aeeac92724f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 3049705,
"known_for_department": "Acting",
"name": "Konomi Inagaki",
"order": 523,
"original_name": "稲垣好",
"popularity": 6.818,
"profile_path": "/qYizWDjykF0j5foMvKGYyRta037.jpg",
"roles": [
{
"character": "Momo's Friend B (voice)",
"credit_id": "6723c5e482658aeeac927280",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5033671,
"known_for_department": "Acting",
"name": "Hoshino Kouki",
"order": 524,
"original_name": "星野煌季",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "6723c6bd826fe5799cc4e967",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2800663,
"known_for_department": "Acting",
"name": "Koki Koyasu",
"order": 525,
"original_name": "子安光樹",
"popularity": 3.422,
"profile_path": "/rTY2DUQgPPwEXAlID8FmIZxIRAX.jpg",
"roles": [
{
"character": "Male Student A (voice)",
"credit_id": "6723c72bfe2a8a011ed755d7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3288856,
"known_for_department": "Acting",
"name": "Kouki Osuzu",
"order": 526,
"original_name": "大鈴功起",
"popularity": 5.253,
"profile_path": "/999LucUsQrPAnsABM1skmoFvOGP.jpg",
"roles": [
{
"character": "Male Student B (voice)",
"credit_id": "6723c74e003c4b5b5b645a3e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3195937,
"known_for_department": "Acting",
"name": "Tasuku Kaito",
"order": 527,
"original_name": "海渡翼",
"popularity": 4.183,
"profile_path": "/eDtru6RxBnCtuYtU2mIXidKekJv.jpg",
"roles": [
{
"character": "Male Student C (voice)",
"credit_id": "6723c76428bd966c9e67338f",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2378092,
"known_for_department": "Acting",
"name": "Shohei Komatsu",
"order": 530,
"original_name": "小松昌平",
"popularity": 6.792,
"profile_path": "/quFQzZn6p2IbKAmNoDs6woDCJOF.jpg",
"roles": [
{
"character": "Classmate (voice)",
"credit_id": "67376d3bba29a051b3cc9741",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2572594,
"known_for_department": "Acting",
"name": "Tomohiro Ohmachi",
"order": 531,
"original_name": "大町知広",
"popularity": 6.345,
"profile_path": "/mku85ql9LtijMRrhqLbYK8WBEFJ.jpg",
"roles": [
{
"character": "Male Student 1 (voice)",
"credit_id": "67376d57e05823bd9c7c795d",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 4111641,
"known_for_department": "Acting",
"name": "Kyohei Zenyoji",
"order": 532,
"original_name": "善養寺恭平",
"popularity": 1.193,
"profile_path": "/qoIC02REXgfS8cNNhdT4mwYnDks.jpg",
"roles": [
{
"character": "Male Student 2 (voice)",
"credit_id": "67376d6b80fda6e3e3746314",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1597103,
"known_for_department": "Acting",
"name": "Hina Kino",
"order": 533,
"original_name": "木野日菜",
"popularity": 29.128,
"profile_path": "/iwq0VvY3q4MPfn5ZTjsthhNcuyd.jpg",
"roles": [
{
"character": "Akusara's Daughter (voice)",
"credit_id": "67376e61ce49410032c1fc34",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1517732,
"known_for_department": "Acting",
"name": "Daisuke Takahashi",
"order": 534,
"original_name": "高橋大輔",
"popularity": 10.217,
"profile_path": "/sDuT3eITAUxkJ5tTjxGxokC19pH.jpg",
"roles": [
{
"character": "Aira's Father (voice)",
"credit_id": "67376eedce49410032c1fc74",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2923370,
"known_for_department": "Acting",
"name": "Seiyuu Fujiwara",
"order": 535,
"original_name": "藤原聖侑",
"popularity": 18.43,
"profile_path": "/fIM22LFxjzGbN1ZlmULeRHEKU9v.jpg",
"roles": [
{
"character": "Man (voice)",
"credit_id": "67376f57ba29a051b3cc9817",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3985900,
"known_for_department": "Acting",
"name": "Takeshi Miyajima",
"order": 537,
"original_name": "宮島岳史",
"popularity": 0.001,
"profile_path": "/webfozdOnWN4xuyQcZYptiH9Xex.jpg",
"roles": [
{
"character": "Teacher (voice)",
"credit_id": "673f80f8304efc9ad121229b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2359648,
"known_for_department": "Acting",
"name": "Tatsumaru Tachibana",
"order": 539,
"original_name": "橘龍丸",
"popularity": 4.265,
"profile_path": "/eShhW1W22SQuUwRaONnpzEZ5w6E.jpg",
"roles": [
{
"character": "Student B (voice)",
"credit_id": "6748b9f3cdece050080abaec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1324931,
"known_for_department": "Acting",
"name": "Naomi Ohzora",
"order": 542,
"original_name": "大空直美",
"popularity": 37.56,
"profile_path": "/qygKX6EtfvPdnPsMM0d41mPztP2.jpg",
"roles": [
{
"character": "Chiquitita (voice)",
"credit_id": "6751fe7372d1a8a59c29910c",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 1222054,
"known_for_department": "Acting",
"name": "Chiaki Takahashi",
"order": 543,
"original_name": "たかはし智秋",
"popularity": 27.762,
"profile_path": "/A0iBTBEYncQ3K9QVQAps0stDjaS.jpg",
"roles": [
{
"character": "Mr. Queen (voice)",
"credit_id": "6752001ffa107dc4ed403b0b",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2603963,
"known_for_department": "Acting",
"name": "Kousuke Echigoya",
"order": 544,
"original_name": "越後屋コースケ",
"popularity": 11.915,
"profile_path": "/gZSWmroax3RdzlFgnBBvbgA6pMY.jpg",
"roles": [
{
"character": "Male Teacher (voice)",
"credit_id": "675200581234b99a9473f1df",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4980600,
"known_for_department": "Acting",
"name": "Kureha Maki",
"order": 545,
"original_name": "牧紅葉",
"popularity": 0.001,
"profile_path": null,
"roles": [
{
"character": "Classmate A (voice)",
"credit_id": "675200cb72d1a8a59c29911a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2679566,
"known_for_department": "Acting",
"name": "Ayano Shibuya",
"order": 546,
"original_name": "渋谷彩乃",
"popularity": 5.905,
"profile_path": "/aXHt8uLQuKItanBKjj7X4sIVhpO.jpg",
"roles": [
{
"character": "Classmate B (voice)",
"credit_id": "675200f01234b99a9473f208",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2860044,
"known_for_department": "Acting",
"name": "Eriko Kadokura",
"order": 547,
"original_name": "角倉英里子",
"popularity": 1.805,
"profile_path": "/kZFvhlMq8oh59bIDpOOuzb6Du8M.jpg",
"roles": [
{
"character": "Classmate C (voice)",
"credit_id": "6752010b1234b99a9473f213",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2369259,
"known_for_department": "Acting",
"name": "Rikuya Yasuda",
"order": 548,
"original_name": "安田陸矢",
"popularity": 11.342,
"profile_path": "/eZCxGqkEibJkUEhLO9Xp4zNDlY3.jpg",
"roles": [
{
"character": "Classmate D (voice)",
"credit_id": "6752012980e5b8f0a7561afc",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3702222,
"known_for_department": "Acting",
"name": "Daichi Fujiwara",
"order": 549,
"original_name": "藤原大智",
"popularity": 2.162,
"profile_path": "/fk3ImXh6LGtTYfBuxTKHEOwvOhl.jpg",
"roles": [
{
"character": "Classmate E (voice)",
"credit_id": "675201464624397fa81162cb",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2644897,
"known_for_department": "Acting",
"name": "Serika Hiromatsu",
"order": 550,
"original_name": "弘松芹香",
"popularity": 4.413,
"profile_path": "/tZdFouOrpbrWiE42HMFDOrA4YJn.jpg",
"roles": [
{
"character": "Classmate F (voice)",
"credit_id": "675201f0ab37fcd3e8851368",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2530103,
"known_for_department": "Acting",
"name": "Hayato Furusawa",
"order": 551,
"original_name": "古沢勇人",
"popularity": 0.475,
"profile_path": "/qpG5NxjphFb8ud2u6v1nkXmQAF0.jpg",
"roles": [
{
"character": "Classmate G (voice)",
"credit_id": "6752021e8e033e9136dc74c7",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3094118,
"known_for_department": "Acting",
"name": "Koji Marunaka",
"order": 555,
"original_name": "丸中康司",
"popularity": 1.264,
"profile_path": "/jlUXRtCnLJIuDGRurCGtWHvfgnY.jpg",
"roles": [
{
"character": "English Teacher (voice)",
"credit_id": "675bac2c591e61e1b0bf0ecf",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 2481143,
"known_for_department": "Acting",
"name": "Kanon Amane",
"order": 557,
"original_name": "天希かのん",
"popularity": 4.827,
"profile_path": "/8DvXAQVIpW5XJbkVNCrMS6IcO4m.jpg",
"roles": [
{
"character": "Female Student B (voice)",
"credit_id": "675bac68b65c1a19cb964747",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 1243817,
"known_for_department": "Acting",
"name": "Shirou Saitou",
"order": 559,
"original_name": "斎藤志郎",
"popularity": 4.015,
"profile_path": "/yJSrzULl9EuXI25E8REdIPY1Lkm.jpg",
"roles": [
{
"character": "Kito Kazuichi (voice)",
"credit_id": "676460168dc046b915a4fc3a",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2381706,
"known_for_department": "Acting",
"name": "Shunichi Maki",
"order": 560,
"original_name": "真木駿一",
"popularity": 6.561,
"profile_path": "/ivESgftEqDgcHQlsbKdW9DYwuH7.jpg",
"roles": [
{
"character": "Kito Jumaniel (voice)",
"credit_id": "6764605d0c865f24891f6544",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2866200,
"known_for_department": "Acting",
"name": "Michitake Kikuchi",
"order": 561,
"original_name": "菊池通武",
"popularity": 4.763,
"profile_path": "/pi49MQHk9jnzJ9altMiiZVCOWIA.jpg",
"roles": [
{
"character": "Kito Norihikoichi (voice)",
"credit_id": "6764611984c93fe868ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 3110539,
"known_for_department": "Acting",
"name": "Yusuke Sasaki",
"order": 562,
"original_name": "佐々木祐介",
"popularity": 1.24,
"profile_path": "/1PTlnypdfoquT6aYz0QWbxIoWPx.jpg",
"roles": [
{
"character": "Kito Jurian (voice)",
"credit_id": "676461810c865f24891f65ec",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2787672,
"known_for_department": "Acting",
"name": "Yuki Tamai",
"order": 563,
"original_name": "玉井勇輝",
"popularity": 8.34,
"profile_path": "/jpkR0WMXEveDJq7TYBvOLKrNXSl.jpg",
"roles": [
{
"character": "Kito Jugenna (voice)",
"credit_id": "676461f40c865f24891f6610",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 0,
"id": 5129842,
"known_for_department": "Acting",
"name": "Mahana Yamasaki",
"order": 564,
"original_name": "山崎真花",
"popularity": 0.02,
"profile_path": "/7wUBIU2DJYiz2twQ2wJ0o5L1ukv.jpg",
"roles": [
{
"character": "Woman A (voice)",
"credit_id": "67646261b05011d6f3a4faf9",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 1,
"id": 4776137,
"known_for_department": "Acting",
"name": "Azusa Tachibana",
"order": 565,
"original_name": "橘杏咲",
"popularity": 0.001,
"profile_path": "/kvDRRBhAyuXChu1sgBViEQpoBka.jpg",
"roles": [
{
"character": "Woman B (voice)",
"credit_id": "676462748856704350ae1f80",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2812912,
"known_for_department": "Acting",
"name": "Shogo Sakata",
"order": 566,
"original_name": "坂田将吾",
"popularity": 17.43,
"profile_path": "/fRRPNBz3OCNRdmLdUTdpq7dGqxM.jpg",
"roles": [
{
"character": "Boy A (voice)",
"credit_id": "676462948856704350ae1f8e",
"episode_count": 1
}
],
"total_episode_count": 1
},
{
"adult": false,
"gender": 2,
"id": 2719917,
"known_for_department": "Acting",
"name": "Noriaki Kanze",
"order": 567,
"original_name": "観世智顕",
"popularity": 5.68,
"profile_path": "/oMtucEisqIrqRVrhIgdMfqusKY2.jpg",
"roles": [
{
"character": "Boy B (voice)",
"credit_id": "676462a80c865f24891f6644",
"episode_count": 1
}
],
"total_episode_count": 1
}
]
Show child attributes
Show child attributes
Example:
[ { "adult": false, "department": "Art", "gender": 2, "id": 144663, "jobs": [ { "credit_id": "67043acc537446e220796bb7", "episode_count": 12, "job": "Art Designer" } ], "known_for_department": "Art", "name": "Seiki Tamura", "original_name": "田村せいき", "popularity": 2.92, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Art", "gender": 2, "id": 80936, "jobs": [ { "credit_id": "65f4f6741e259a017c4c2365", "episode_count": 12, "job": "Art Direction" } ], "known_for_department": "Art", "name": "Junichi Higashi", "original_name": "東潤一", "popularity": 8.255, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Art", "gender": 2, "id": 2044776, "jobs": [ { "credit_id": "67043318508dfa7ba3796f0e", "episode_count": 2, "job": "Storyboard Artist" } ], "known_for_department": "Directing", "name": "Fuga Yamashiro", "original_name": "山代風我", "popularity": 4.616, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Art", "gender": 2, "id": 2900138, "jobs": [ { "credit_id": "6723c845c3f65a93a4501cc8", "episode_count": 2, "job": "Storyboard Artist" } ], "known_for_department": "Directing", "name": "Hiromi Nishiyama", "original_name": "Hiromi Nishiyama", "popularity": 0.727, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Art", "gender": 2, "id": 1496193, "jobs": [ { "credit_id": "67043ad84cf47c730f74051a", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Yuta Murakami", "original_name": "村上悠太", "popularity": 3.518, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 2968407, "jobs": [ { "credit_id": "672d748dbe76b0644b3df1d6", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Directing", "name": "Nozomi Fukui", "original_name": "Nozomi Fukui", "popularity": 2.164, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 4079768, "jobs": [ { "credit_id": "67043adc3afc91a5f113aeed", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Kanata Baba", "original_name": "馬場奏多", "popularity": 0.479, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3419470, "jobs": [ { "credit_id": "67043ade174a1d5773797666", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Takayuki Kotani", "original_name": "小谷隆之", "popularity": 0.638, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3031211, "jobs": [ { "credit_id": "6711bba398f6a758cd54831e", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Visual Effects", "name": "Daiki Yonemori", "original_name": "Daiki Yonemori", "popularity": 1.538, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 1456789, "jobs": [ { "credit_id": "676760030b2fbb9dea5e31dd", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Art", "name": "Shinsaku Sasaki", "original_name": "笹木信作", "popularity": 9.944, "profile_path": "/gIjYF8vegOuvIZsfv2UzH8GMf4h.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 0, "id": 4986619, "jobs": [ { "credit_id": "67043b217cfea6f2027404f4", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Rui Nakayama", "original_name": "中山瑠", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 1956404, "jobs": [ { "credit_id": "6752027772d1a8a59c2991af", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Directing", "name": "Heo Jong", "original_name": "Heo Jong", "popularity": 4.964, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 3556013, "jobs": [ { "credit_id": "67043ada174a1d5773797658", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Miki Kobayashi", "original_name": "小林美希", "popularity": 2.496, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3090000, "jobs": [ { "credit_id": "67377057e05823bd9c7c7a2d", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Visual Effects", "name": "Shuto Enomoto", "original_name": "Shuto Enomoto", "popularity": 1.327, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 1879426, "jobs": [ { "credit_id": "67043add3afc91a5f113aef4", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Fuminao Akai", "original_name": "赤井文尚", "popularity": 1.046, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3213251, "jobs": [ { "credit_id": "67043ad9b4e3d1a4847407d1", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Jin Sakuma", "original_name": "佐久間仁", "popularity": 1.605, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 3150722, "jobs": [ { "credit_id": "67043ad73afc91a5f113aee7", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Momoya Iwata", "original_name": "岩田百代", "popularity": 4.175, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 3150713, "jobs": [ { "credit_id": "67043ae8537446e220796bc5", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Mari Ishikawa", "original_name": "石川真理", "popularity": 1.256, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3150725, "jobs": [ { "credit_id": "67043ad43d7b3c6c07797684", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Yusuke Mizuno", "original_name": "水野雄介", "popularity": 2.089, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 2520233, "jobs": [ { "credit_id": "6748ba53d44c3bfa4618ce0a", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Visual Effects", "name": "Kenji Zemba", "original_name": "前場健次", "popularity": 2.503, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 1243640, "jobs": [ { "credit_id": "673f81a13f6b210e584223e9", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Directing", "name": "Hiroshi Nishikiori", "original_name": "錦織博", "popularity": 11.078, "profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 4079767, "jobs": [ { "credit_id": "67043adc3afc91a5f113aef1", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Yoshihiro Horigami", "original_name": "堀上佳滉", "popularity": 1.469, "profile_path": "/f9PScyalh7jW0wY1s6md3E9LHSh.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 1, "id": 3895737, "jobs": [ { "credit_id": "67043adab6f587ede813b08d", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Kanako Abe", "original_name": "安部夏菜子", "popularity": 1.031, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 3221771, "jobs": [ { "credit_id": "671a7d0be833d92ef05fe61b", "episode_count": 1, "job": "Storyboard Artist" } ], "known_for_department": "Visual Effects", "name": "mokochan", "original_name": "モコちゃん", "popularity": 1.267, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 2160240, "jobs": [ { "credit_id": "67043ad63afc91a5f113aee4", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Shintaro Akiyama", "original_name": "秋山慎太郎", "popularity": 2.47, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 2160239, "jobs": [ { "credit_id": "67043ad6174a1d5773797653", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Masahiro Abe", "original_name": "阿部真大", "popularity": 5.394, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 0, "id": 3895742, "jobs": [ { "credit_id": "67043adb174a1d577379765d", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "Ayumu Sakurai", "original_name": "桜井歩", "popularity": 0.714, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Art", "gender": 2, "id": 2159667, "jobs": [ { "credit_id": "67043ad5b4e3d1a4847407cc", "episode_count": 1, "job": "Background Designer" } ], "known_for_department": "Art", "name": "So Senoo", "original_name": "妹尾想", "popularity": 2.659, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Camera", "gender": 2, "id": 1632175, "jobs": [ { "credit_id": "65f4f6781e259a017c4c2370", "episode_count": 12, "job": "Director of Photography" } ], "known_for_department": "Camera", "name": "Kazuto Izumita", "original_name": "出水田和人", "popularity": 1.524, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Directing", "gender": 2, "id": 2044776, "jobs": [ { "credit_id": "6564bbc6706e5600fe04a2cb", "episode_count": 13, "job": "Series Director" }, { "credit_id": "670433187cfea6f2027402a3", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Fuga Yamashiro", "original_name": "山代風我", "popularity": 4.616, "profile_path": null, "total_episode_count": 14 }, { "adult": false, "department": "Directing", "gender": 2, "id": 3221771, "jobs": [ { "credit_id": "671a7cfca4ac8a432c5c11b0", "episode_count": 1, "job": "Director" }, { "credit_id": "670432dfb4e3d1a484740583", "episode_count": 12, "job": "Assistant Director" } ], "known_for_department": "Visual Effects", "name": "mokochan", "original_name": "モコちゃん", "popularity": 1.267, "profile_path": null, "total_episode_count": 13 }, { "adult": false, "department": "Directing", "gender": 2, "id": 3089980, "jobs": [ { "credit_id": "67676007f926be03cc74e94f", "episode_count": 1, "job": "Director" }, { "credit_id": "6704331a508dfa7ba3796f14", "episode_count": 1, "job": "Assistant Director" } ], "known_for_department": "Directing", "name": "Toru Hasutani", "original_name": "蓮谷トオル", "popularity": 0.713, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Directing", "gender": 2, "id": 2520233, "jobs": [ { "credit_id": "6748ba5afa8873917ff7b079", "episode_count": 1, "job": "Director" }, { "credit_id": "6704331b508dfa7ba3796f1a", "episode_count": 1, "job": "Assistant Director" } ], "known_for_department": "Visual Effects", "name": "Kenji Zemba", "original_name": "前場健次", "popularity": 2.503, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Directing", "gender": 2, "id": 2313366, "jobs": [ { "credit_id": "676463928856704350ae1fe2", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Tetsuya Wakano", "original_name": "Tetsuya Wakano", "popularity": 1.399, "profile_path": "/1c6plg3VZ2UT9UIIcIlQ8xHoInq.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 2, "id": 1491875, "jobs": [ { "credit_id": "6767603bf926be03cc74e963", "episode_count": 1, "job": "Series Director" } ], "known_for_department": "Visual Effects", "name": "Abel Góngora", "original_name": "Abel Góngora", "popularity": 5.827, "profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 2, "id": 1243640, "jobs": [ { "credit_id": "673f81963f6b210e584223e0", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Hiroshi Nishikiori", "original_name": "錦織博", "popularity": 11.078, "profile_path": "/bhZYbbLgeInp07cGQBoP5ixCUTG.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 0, "id": 4381855, "jobs": [ { "credit_id": "6704331ab4e3d1a48474059d", "episode_count": 1, "job": "Assistant Director" } ], "known_for_department": "Visual Effects", "name": "Blues Lee", "original_name": "Blues Lee", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 1, "id": 2968407, "jobs": [ { "credit_id": "672d747ebe76b0644b3df1cb", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Nozomi Fukui", "original_name": "Nozomi Fukui", "popularity": 2.164, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 2, "id": 2900138, "jobs": [ { "credit_id": "6723c83b1df70f7920ff087c", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Hiromi Nishiyama", "original_name": "Hiromi Nishiyama", "popularity": 0.727, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 0, "id": 3344603, "jobs": [ { "credit_id": "6736a39d021223a874c5fc1a", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Kotaro Matsunaga", "original_name": "Kotaro Matsunaga", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 2, "id": 1835257, "jobs": [ { "credit_id": "67087652d357a2103996950d", "episode_count": 1, "job": "Director" } ], "known_for_department": "Visual Effects", "name": "Rushio Moriyama", "original_name": "Rushio Moriyama", "popularity": 1.882, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 1, "id": 3291884, "jobs": [ { "credit_id": "675202998af6d3feb3aff8b3", "episode_count": 1, "job": "Director" } ], "known_for_department": "Directing", "name": "Kayona Yamada", "original_name": "山田加余仲", "popularity": 0.738, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 0, "id": 2936285, "jobs": [ { "credit_id": "6704331cb4e3d1a4847405a3", "episode_count": 1, "job": "Assistant Director" } ], "known_for_department": "Visual Effects", "name": "Gan Haotian", "original_name": "甘浩天", "popularity": 0.929, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Directing", "gender": 2, "id": 3031211, "jobs": [ { "credit_id": "6711bb968e844657b7fae8a7", "episode_count": 1, "job": "Director" } ], "known_for_department": "Visual Effects", "name": "Daiki Yonemori", "original_name": "Daiki Yonemori", "popularity": 1.538, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Editing", "gender": 1, "id": 2574520, "jobs": [ { "credit_id": "6704324bb6f587ede813ad4e", "episode_count": 12, "job": "Assistant Editor" } ], "known_for_department": "Editing", "name": "Misaki Enokida", "original_name": "榎田美咲", "popularity": 3.814, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Editing", "gender": 2, "id": 4986515, "jobs": [ { "credit_id": "67043266b6f587ede813ad72", "episode_count": 12, "job": "Online Editor" } ], "known_for_department": "Editing", "name": "Reo Nakamura", "original_name": "中村怜央", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Editing", "gender": 2, "id": 1570184, "jobs": [ { "credit_id": "65f4f67ceb14fa017cb997fd", "episode_count": 12, "job": "Editor" } ], "known_for_department": "Editing", "name": "Kiyoshi Hirose", "original_name": "廣瀬清志", "popularity": 4.63, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Editing", "gender": 1, "id": 3243393, "jobs": [ { "credit_id": "670432513d7b3c6c0779735d", "episode_count": 12, "job": "Online Editor" } ], "known_for_department": "Editing", "name": "Kasumi Shibata", "original_name": "柴田香澄", "popularity": 1.076, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 3200954, "jobs": [ { "credit_id": "6703dea818a8b49d3213983c", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Tatsuya Ishikawa", "original_name": "石川達也", "popularity": 2.364, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 3723106, "jobs": [ { "credit_id": "6703dea7a5f29f43a573eac2", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Soichiro Saito", "original_name": "斉藤壮一郎", "popularity": 1.805, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 1, "id": 1491866, "jobs": [ { "credit_id": "6703de04a5f29f43a573ea7a", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Directing", "name": "Eunyoung Choi", "original_name": "최은영", "popularity": 8.89, "profile_path": "/rsJaoDO9eL7d3Vv2jkyHJoXMjh.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 2801613, "jobs": [ { "credit_id": "6703ddfe3d7b3c6c07795c94", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Yoshihisa Heishi", "original_name": "瓶子吉久", "popularity": 2.686, "profile_path": "/1nKceWUfKlTmRsQ4QzPCmqx4ceX.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 1816778, "jobs": [ { "credit_id": "6703dea318a8b49d3213982c", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Toshihiro Maeda", "original_name": "前田俊博", "popularity": 8.337, "profile_path": "/uEKRPogU0Z1Lbgy3NWoxeTqX41T.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 2431671, "jobs": [ { "credit_id": "6703dea84cf47c730f73f08d", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Hiroshi Muto", "original_name": "武藤大司", "popularity": 0.171, "profile_path": "/u8miFudieUNRXPiEPntNUsGcXYg.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 3286707, "jobs": [ { "credit_id": "6703dea4b4e3d1a48473eefe", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Tatsuro Hayashi", "original_name": "林辰朗", "popularity": 1.033, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 4539931, "jobs": [ { "credit_id": "6703ddf0a5f29f43a573ea5d", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Yusuke Arai", "original_name": "新居祐介", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 1257407, "jobs": [ { "credit_id": "6703ddf43d7b3c6c07795c85", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Atsuhiro Iwakami", "original_name": "岩上敦宏", "popularity": 4.839, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 2044779, "jobs": [ { "credit_id": "6703dea63d7b3c6c07795cf6", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Kohei Sakita", "original_name": "崎田康平", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 2271902, "jobs": [ { "credit_id": "6703dea53afc91a5f11396ca", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Hiroshi Kamei", "original_name": "亀井博司", "popularity": 1.564, "profile_path": "/cxxyQF5Bdo2fhaS25HytXJBtE1Z.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 1, "id": 1048416, "jobs": [ { "credit_id": "6703debe508dfa7ba3795aa9", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Yoshiko Makabe", "original_name": "真壁佳子", "popularity": 0.243, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 1, "id": 4985808, "jobs": [ { "credit_id": "6703de14b6f587ede8139b52", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Mihoko Shibata", "original_name": "柴田三穂子", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 3103118, "jobs": [ { "credit_id": "6703dea4508dfa7ba3795aa3", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Hayato Saga", "original_name": "嵯峨隼人", "popularity": 2.449, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 1, "id": 3499820, "jobs": [ { "credit_id": "6703dea93d7b3c6c07795cf9", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Takako Yamamori", "original_name": "山守貴子", "popularity": 0.897, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 3555794, "jobs": [ { "credit_id": "6703ddfa3d7b3c6c07795c88", "episode_count": 12, "job": "Executive Producer" } ], "known_for_department": "Production", "name": "Tatsunobu Sato", "original_name": "佐藤龍伸", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Production", "gender": 2, "id": 2381689, "jobs": [ { "credit_id": "6703dea63d7b3c6c07795cf3", "episode_count": 12, "job": "Producer" } ], "known_for_department": "Production", "name": "Hiroyuki Aoi", "original_name": "青井宏之", "popularity": 2.157, "profile_path": "/bSX92tNZtKsGtS56EazzBqbNYba.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 2, "id": 3470015, "jobs": [ { "credit_id": "6703de92b4e3d1a48473eee8", "episode_count": 12, "job": "Sound Mixer" } ], "known_for_department": "Sound", "name": "Hiroaki Ota", "original_name": "太田泰明", "popularity": 1.7, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 2, "id": 3304217, "jobs": [ { "credit_id": "66781fd26573606ef673275c", "episode_count": 12, "job": "Theme Song Performance" } ], "known_for_department": "Sound", "name": "DJ Matsunaga", "original_name": "DJ松永", "popularity": 4.918, "profile_path": "/A1HubDJZBAxKwu38znUJjndpSEW.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 1, "id": 3523367, "jobs": [ { "credit_id": "66c4599e6c67ac7e7b3b1e1f", "episode_count": 12, "job": "Theme Song Performance" } ], "known_for_department": "Sound", "name": "ACA-Ne", "original_name": "ずっと真夜中でいいのに", "popularity": 1.473, "profile_path": "/ceF3sRCzTbNheksCq7osAp8ubHW.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 2, "id": 2285493, "jobs": [ { "credit_id": "6703de8c3d7b3c6c07795ce5", "episode_count": 12, "job": "Sound Effects" } ], "known_for_department": "Sound", "name": "Shota Yaso", "original_name": "八十正太", "popularity": 4.937, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 2, "id": 3304216, "jobs": [ { "credit_id": "66781fe02dbc639f16f3f5e8", "episode_count": 12, "job": "Theme Song Performance" } ], "known_for_department": "Sound", "name": "R-Shitei", "original_name": "R-指定", "popularity": 23.908, "profile_path": "/jAKabjhF3IaQDBrx4aWlAKUrZnF.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 0, "id": 3434674, "jobs": [ { "credit_id": "670432847cfea6f202740219", "episode_count": 12, "job": "Foley Artist" } ], "known_for_department": "Sound", "name": "Takumi Hamamoto", "original_name": "濱本拓海", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 1, "id": 1555482, "jobs": [ { "credit_id": "65f4f681e039f10164026b55", "episode_count": 12, "job": "Sound Director" } ], "known_for_department": "Sound", "name": "Eriko Kimura", "original_name": "木村絵理子", "popularity": 5.915, "profile_path": "/yu3PPgzxVy8f8Qri9mdOTWMPhan.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Sound", "gender": 2, "id": 1677276, "jobs": [ { "credit_id": "6564b9db8f26bc00ff6ff2b1", "episode_count": 12, "job": "Original Music Composer" } ], "known_for_department": "Sound", "name": "Kensuke Ushio", "original_name": "牛尾憲輔", "popularity": 8.39, "profile_path": "/A3FnNDo5WKMnAGHPlAMpRED4s9j.jpg", "total_episode_count": 12 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 1144163, "jobs": [ { "credit_id": "6564b9c8a35c8e011bfda261", "episode_count": 12, "job": "Character Designer" }, { "credit_id": "67043319508dfa7ba3796f11", "episode_count": 2, "job": "Supervising Animation Director" } ], "known_for_department": "Visual Effects", "name": "Naoyuki Onda", "original_name": "恩田尚之", "popularity": 11.636, "profile_path": null, "total_episode_count": 14 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 1491875, "jobs": [ { "credit_id": "670432b87cfea6f202740222", "episode_count": 12, "job": "Opening/Ending Animation" }, { "credit_id": "670433aab6f587ede813aea3", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Abel Góngora", "original_name": "Abel Góngora", "popularity": 5.827, "profile_path": "/jZU8NupOBAFriwaZ2uHDFYNkq1O.jpg", "total_episode_count": 13 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 40344, "jobs": [ { "credit_id": "65f4f66fd4d509017daa6652", "episode_count": 12, "job": "Color Designer" } ], "known_for_department": "Visual Effects", "name": "Satoshi Hashimoto", "original_name": "橋本賢", "popularity": 13.793, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 4690783, "jobs": [ { "credit_id": "6703de6b3d7b3c6c07795cd2", "episode_count": 12, "job": "Color Designer" } ], "known_for_department": "Visual Effects", "name": "Makiho Kondo", "original_name": "近藤牧穂", "popularity": 0.538, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 1297517, "jobs": [ { "credit_id": "6564bbe6d9554b011d6420d0", "episode_count": 12, "job": "Creature Design" } ], "known_for_department": "Visual Effects", "name": "Yoshimichi Kameda", "original_name": "亀田祥倫", "popularity": 12.762, "profile_path": null, "total_episode_count": 12 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2844419, "jobs": [ { "credit_id": "6704331fb4e3d1a4847405b5", "episode_count": 2, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Shinobu Isoko", "original_name": "五十子忍", "popularity": 4.146, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3095251, "jobs": [ { "credit_id": "6704331eb6f587ede813ae1a", "episode_count": 2, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Kotomi Ota", "original_name": "太田琴美", "popularity": 0.344, "profile_path": "/kWLoB4XJ7oCRdcy5gHenqeoH4bv.jpg", "total_episode_count": 2 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 2936285, "jobs": [ { "credit_id": "6704331d508dfa7ba3796f20", "episode_count": 1, "job": "Key Animation" }, { "credit_id": "6704331db6f587ede813ae17", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Gan Haotian", "original_name": "甘浩天", "popularity": 0.929, "profile_path": null, "total_episode_count": 2 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3095189, "jobs": [ { "credit_id": "6704331fb4e3d1a4847405b8", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Yusaku Nagahama", "original_name": "長濱佑作", "popularity": 2.074, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3090000, "jobs": [ { "credit_id": "673770d880fda6e3e3746433", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Shuto Enomoto", "original_name": "Shuto Enomoto", "popularity": 1.327, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 2815799, "jobs": [ { "credit_id": "6704338e174a1d5773797472", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "MYOUN", "original_name": "묘운", "popularity": 6.447, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 2933092, "jobs": [ { "credit_id": "6704331e508dfa7ba3796f23", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Masamichi Ishiyama", "original_name": "石山正修", "popularity": 2.772, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3739026, "jobs": [ { "credit_id": "67043ae1b4e3d1a4847407d6", "episode_count": 1, "job": "Compositing Artist" } ], "known_for_department": "Visual Effects", "name": "Keiko Sasaki", "original_name": "佐々木景子", "popularity": 0.433, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 2910064, "jobs": [ { "credit_id": "6704332ab6f587ede813ae3e", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Akihito Sudo", "original_name": "須藤瑛仁", "popularity": 2.801, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3204408, "jobs": [ { "credit_id": "67043322b6f587ede813ae24", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Mark Corcoran", "original_name": "コーコラン・マーク", "popularity": 0.567, "profile_path": "/eygXbiOmdqulHddNcC27Bxzxg7h.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 4353617, "jobs": [ { "credit_id": "67043327b6f587ede813ae38", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Qiu Chengrui", "original_name": "丘城鋭", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2756604, "jobs": [ { "credit_id": "670433264cf47c730f740240", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Miki Kaneko", "original_name": "金子美紀", "popularity": 2.189, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3488017, "jobs": [ { "credit_id": "67043ae118a8b49d3213adae", "episode_count": 1, "job": "Compositing Artist" } ], "known_for_department": "Visual Effects", "name": "Akane Ueda", "original_name": "上田茜", "popularity": 1.115, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3054960, "jobs": [ { "credit_id": "67043323b6f587ede813ae27", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "azoura", "original_name": "azoura", "popularity": 1.713, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2044754, "jobs": [ { "credit_id": "67043321508dfa7ba3796f34", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Shoko Nishigaki", "original_name": "西垣庄子", "popularity": 1.81, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2855374, "jobs": [ { "credit_id": "671a7d472685cb6563c0b075", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Tomomi Noda", "original_name": "Tomomi Noda", "popularity": 1.225, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 5143916, "jobs": [ { "credit_id": "676ee7e5f9454eeb1d92abb7", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Zhou Xuan", "original_name": "周玄", "popularity": 0.035, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3916658, "jobs": [ { "credit_id": "67043363cc904f12d913ae0e", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Yue", "original_name": "ゆえ", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 2702912, "jobs": [ { "credit_id": "67043332b6f587ede813ae41", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Nick McKergow", "original_name": "Nick McKergow", "popularity": 0.544, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3818550, "jobs": [ { "credit_id": "670433b5cc904f12d913ae47", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Nonno", "original_name": "のんの", "popularity": 0.323, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3005017, "jobs": [ { "credit_id": "67043328508dfa7ba3796f3a", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Liu Yuchen", "original_name": "劉禹辰", "popularity": 0.579, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3319186, "jobs": [ { "credit_id": "67043325508dfa7ba3796f37", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Kinya Rikitoku", "original_name": "力徳欽也", "popularity": 2.095, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3209200, "jobs": [ { "credit_id": "6704332a4cf47c730f740244", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "nasiijau", "original_name": "nasiijau", "popularity": 0.113, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2182422, "jobs": [ { "credit_id": "671a7d79a4ac8a432c5c11ea", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Yumi Shimojo", "original_name": "下條祐未", "popularity": 4.009, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3042857, "jobs": [ { "credit_id": "67043adf508dfa7ba3797228", "episode_count": 1, "job": "Compositing Artist" } ], "known_for_department": "Camera", "name": "Noriyuki Ueda", "original_name": "上田程之", "popularity": 1.235, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 2520233, "jobs": [ { "credit_id": "6704331cb4e3d1a4847405a0", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Kenji Zemba", "original_name": "前場健次", "popularity": 2.503, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 2809667, "jobs": [ { "credit_id": "67043325b6f587ede813ae31", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Masaki Hayano", "original_name": "早野正樹", "popularity": 2.041, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3056593, "jobs": [ { "credit_id": "67043324b6f587ede813ae2d", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Yuki Ito", "original_name": "伊藤優希", "popularity": 5.097, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 3352626, "jobs": [ { "credit_id": "67043323b6f587ede813ae2a", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "momofuji", "original_name": "百藤", "popularity": 0.723, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3508322, "jobs": [ { "credit_id": "67043328b6f587ede813ae3b", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Kotaro Okubo", "original_name": "大久保洸太郎", "popularity": 1.114, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 2856634, "jobs": [ { "credit_id": "671a7d6827bd57d91f62685c", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Chan Yan", "original_name": "Chan Yan", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 4986525, "jobs": [ { "credit_id": "67043350b6f587ede813ae72", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Genta Ishimori", "original_name": "石守源太", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 2, "id": 3326157, "jobs": [ { "credit_id": "671a7c2827bd57d91f6267aa", "episode_count": 1, "job": "Key Animation" } ], "known_for_department": "Visual Effects", "name": "Kyohei Ebata", "original_name": "江端恭平", "popularity": 3.176, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 0, "id": 4381855, "jobs": [ { "credit_id": "6704331bb6f587ede813ae13", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Blues Lee", "original_name": "Blues Lee", "popularity": 0.001, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3156687, "jobs": [ { "credit_id": "67087746d357a210399695af", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Keika Ushimaru", "original_name": "牛丸圭華", "popularity": 1.67, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 3243194, "jobs": [ { "credit_id": "67043ae0508dfa7ba379722b", "episode_count": 1, "job": "Compositing Artist" } ], "known_for_department": "Visual Effects", "name": "Yuma Akasu", "original_name": "赤須由麻", "popularity": 0.551, "profile_path": null, "total_episode_count": 1 }, { "adult": false, "department": "Visual Effects", "gender": 1, "id": 2520222, "jobs": [ { "credit_id": "67043320508dfa7ba3796f27", "episode_count": 1, "job": "Animation Director" } ], "known_for_department": "Visual Effects", "name": "Mari Motohashi", "original_name": "本橋茉里", "popularity": 1.708, "profile_path": "/A12iiRiKiquRwIECRFdXnfutkfu.jpg", "total_episode_count": 1 }, { "adult": false, "department": "Writing", "gender": 2, "id": 1491863, "jobs": [ { "credit_id": "6564b9a73679a10974dab748", "episode_count": 12, "job": "Series Composition" }, { "credit_id": "670433177cfea6f2027402a0", "episode_count": 12, "job": "Writer" } ], "known_for_department": "Writing", "name": "Hiroshi Seko", "original_name": "瀬古浩司", "popularity": 14.03, "profile_path": "/zdTUsjMPFEZhygVdKs5rABtHJyk.jpg", "total_episode_count": 24 }, { "adult": false, "department": "Writing", "gender": 2, "id": 4399732, "jobs": [ { "credit_id": "665fa9d243ba5474df0906d6", "episode_count": 12, "job": "Original Concept" } ], "known_for_department": "Writing", "name": "Yukinobu Tatsu", "original_name": "龍幸伸", "popularity": 0.001, "profile_path": null, "total_episode_count": 12 } ]
Example:
240411