
ONE PIECE
DubbedAL
Updated 17d ago
COMING SOON · Spanish (Latin America), French, German, Portuguese, and Italian dub tracking — currently English-only
Type any title to check whether the dub is out, in production, just announced, or still sub-only — no spoilers, no scrolling reddit threads, no doomposting.
Full English voice cast, available now on most platforms
Studio confirmed, dubbing actively in progress
Dub greenlit but recording hasn't started yet
No dub has been confirmed or announced yet
Install once, and every anime on AniList, MAL, and Kitsu gets a small status pill next to its title. No accounts, no tracking, ~14kb gzipped.
A JSON REST API for dub status lookups. Batch up to 50 AniList IDs per request. No account needed to start.
curl https://api.anidub.dev/v1/anime/lookup \
-X POST \
-H "Content-Type: application/json" \
-d '{"ids": [21, 11061, 1535]}'{
"results": [
{
"anilistId": 21,
"titleEnglish": "One Piece",
"dub": { "language": "en", "status": "dubbed", "confidence": 0.95 }
},
{
"anilistId": 11061,
"titleEnglish": "Hunter x Hunter (2011)",
"dub": { "language": "en", "status": "dubbed", "confidence": 0.95 }
}
],
"notFound": [1535]
}