Catalog/data-anime

Data

Anime / manga search (Jikan) API

Search anime titles (Jikan / MyAnimeList): type, episode count, score, year, status, genres, synopsis. For media/entertainment agents. Answers 'info about Naruto', 'score of this anime', 'anime like X', 'how many episodes does Y have'.

Price$0.01per request
MethodPOST
Route/v1/data/anime
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache86400s public
dataanimemangajikanmyanimelistmediaentertainmentjapan
API URLhttps://x402.hexl.dev/v1/data/anime
Integration docs
Example request
{
  "query": "naruto",
  "limit": 1
}
Example response
{
  "query": "naruto",
  "results": [
    {
      "title": "Naruto",
      "type": "TV",
      "episodes": 220,
      "score": 8,
      "year": 2002,
      "status": "Finished Airing",
      "genres": [
        "Action",
        "Adventure"
      ],
      "synopsis": "Moments prior to Naruto Uzumaki's birth…",
      "url": "https://myanimelist.net/anime/20/Naruto"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "examples": [
        "naruto"
      ]
    },
    "limit": {
      "type": "number",
      "default": 5
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}