Data
Community recs for an anime (Jikan) API
MyAnimeList community recommendations for a given anime id via Jikan, normalized and sorted by vote count so the strongest 'if you liked this, watch that' suggestions surface first. Answers 'anime like X', 'what do fans of this also watch'.
Price$0.01per request
MethodPOST
Route/v1/data/anime-recommendations
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
dataanimejikanmyanimelistrecommendationsmediaentertainmentdiscovery
API URL
Integration docshttps://x402.hexl.dev/v1/data/anime-recommendationsExample request
{
"id": 52991,
"limit": 5
}Example response
{
"forAnimeId": 52991,
"count": 5,
"recommendations": [
{
"malId": 33352,
"title": "Violet Evergarden",
"votes": 28,
"url": "https://myanimelist.net/anime/33352/Violet_Evergarden"
},
{
"malId": 41025,
"title": "Fumetsu no Anata e",
"votes": 18,
"url": "https://myanimelist.net/anime/41025/Fumetsu_no_Anata_e"
},
{
"malId": 35851,
"title": "Sayonara no Asa ni Yakusoku no Hana wo Kazarou",
"votes": 14,
"url": "https://myanimelist.net/anime/35851/Sayonara_no_Asa_ni_Yakusoku_no_Hana_wo_Kazarou"
},
{
"malId": 52701,
"title": "Dungeon Meshi",
"votes": 14,
"url": "https://myanimelist.net/anime/52701/Dungeon_Meshi"
},
{
"malId": 40571,
"title": "Majo no Tabitabi",
"votes": 9,
"url": "https://myanimelist.net/anime/40571/Majo_no_Tabitabi"
}
]
}Input schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
"minimum": 1,
"description": "MyAnimeList anime id."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 10
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}