Skip to main content
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
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aniquotes.myproj.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

slug
string
required
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
  }
}