AniVex Pipeline Engine

Decrypted, bypassed, and reverse-engineered anime streaming API
v1.4.0 — Optimized Production Build
⚡ Performance Optimized: 70-90% reduced bandwidth usage via 307 redirects, aggressive caching, Redis connection pooling, and response compression.
🔍 Search & Discovery
GET /search
Search anime by name. Returns full metadata per result — title (romaji / english / native), cover art, banner, genres, studios, scores, airing status, and more.
Params: query (required), page=1, per_page=20
Returns: page, perPage, total, hasNextPage, results[] — each with 20+ fields
GET /suggestions
Lightweight search for autocomplete / dropdown. Returns only the essentials: id, title, poster, format, status, year, and episode count. Max 8 results.
Params: query (required)
GET /spotlight
The ultra-curated "What's Hot" list. Fetches the top 10 anime currently trending and popular across the globe. Perfect for hero banners and home carousels.
GET /filter
Advanced filter / browse. Combine any filters — all params are optional.
📊 Collections (Paginated)
GET /trending
Currently trending anime across the community.
GET /popular
Most popular anime of all time by total user count.
GET /upcoming
Most anticipated anime that haven't aired yet.
GET /recent
Currently airing / this season's anime.
GET /schedule
Next episodes airing soon. Each result includes the full anime info plus airingAt (UNIX timestamp), timeUntilAiring (seconds), and next_episode (episode number).
📖 Anime Details
GET /info/{anilist_id}
Complete anime page — everything you need to build an anime detail page in one request.
▶️ Streaming Proxy Logic
1GET /episodes/{anilist_id}
Get all available episodes for an anime. Returns episodes from multiple providers (kiwi, arc, zoro, jet, etc.) organized by audio type (sub / dub).
2 /watch/{provider}/{anilistId}/{category}/{slug}
The super simple way to get sources. Just take the direct id from the Step 1 response and use it as the URL. No manual parameters needed!