Get Anime
curl --request GET \
--url https://api.example.com/api/v1/anime/{slug}{
"status": "success",
"data": {
"id": "...",
"name": "Attack on Titan",
"slug": "attack-on-titan",
"cover_url": "https://...",
"mal_id": 16498,
"genres": ["action", "drama", "fantasy"],
"synopsis": "Centuries ago, mankind was...",
"episodes": 87,
"status": "finished",
"studio": "MAPPA",
"characters": [
{ "id": "...", "name": "Eren Yeager", "slug": "eren-yeager", "role": "main" }
],
"quotes_count": 42
}
}
Anime
Get Anime
Get anime details including characters and quote count
GET
/
api
/
v1
/
anime
/
{slug}
Get Anime
curl --request GET \
--url https://api.example.com/api/v1/anime/{slug}{
"status": "success",
"data": {
"id": "...",
"name": "Attack on Titan",
"slug": "attack-on-titan",
"cover_url": "https://...",
"mal_id": 16498,
"genres": ["action", "drama", "fantasy"],
"synopsis": "Centuries ago, mankind was...",
"episodes": 87,
"status": "finished",
"studio": "MAPPA",
"characters": [
{ "id": "...", "name": "Eren Yeager", "slug": "eren-yeager", "role": "main" }
],
"quotes_count": 42
}
}
Path Parameters
The URL slug of the anime (e.g.,
naruto, one-piece){
"status": "success",
"data": {
"id": "...",
"name": "Attack on Titan",
"slug": "attack-on-titan",
"cover_url": "https://...",
"mal_id": 16498,
"genres": ["action", "drama", "fantasy"],
"synopsis": "Centuries ago, mankind was...",
"episodes": 87,
"status": "finished",
"studio": "MAPPA",
"characters": [
{ "id": "...", "name": "Eren Yeager", "slug": "eren-yeager", "role": "main" }
],
"quotes_count": 42
}
}
⌘I