Note
API MAYBE Temporarily Paused due to suspiciously too many requests. My hosted version of this API is only for testing purposes. You MUST host your own instance to use the API.
A complete RESTful API for anime streaming data powered by AniList GraphQL and Miruro providers
Search, browse, filter, watch — every endpoint returns fresh data with smart caching.
46 endpoints, 12 streaming providers, M3U8 URLs with subtitles, skip timestamps, and batch operations.
Table of Contents • Features • API Docs • Quick Start • Deployment • Contributing
Warning
- This
APIdoes not store any files — it only links to media hosted on 3rd party services. - This
APIis explicitly made for educational purposes only and not for commercial usage. This repo will not be responsible for any misuse of it. - All anime data, images, and content belong to their respective owners (AniList, Miruro). This project is not affiliated with Miruro.
- Overview
- Features
- Data Sources
- Tech Stack
- Architecture
- Project Structure
- Quick Start
- Configuration
- API Endpoints
- Streaming Flow
- API Response Schema
- Deployment
- Available Scripts
- Performance
- Changelog Highlights
- Troubleshooting
- FAQ
- Roadmap
- Contributing
- Acknowledgements
- License
- Author
- Star History
MiruroAPI is a serverless anime data API that fetches real-time information from AniList GraphQL and streaming data from Miruro providers — including anime details, episode lists, M3U8 streaming URLs with subtitles and skip timestamps, search, filtering, characters, and more — all through a clean REST API with zero database.
💡 No database, no auth, no complex setup. Just deploy to Vercel and you have a production API.
- 🎬 46 Endpoints — Complete anime data coverage
- 🔍 Full-Text Search — Search anime by keyword with suggestions
- 🎭 Characters & Voice Actors — Full character data from AniList
- 🎯 Advanced Filtering — Genre, year, season, format, sort
- 🏆 Trending & Popular — Discover what's hot right now
- 📅 Airing Schedule — See what's airing on any date
- 📡 12 Streaming Providers — M3U8 streaming sources
- ⏭️ Skip Timestamps — OP/ED skip data
- 🎭 Character & Staff Search — Search characters and staff by name
- 🎬 Batch Episodes — Fetch multiple episode sources in parallel
- ⚡ Smart Caching — In-memory Map with configurable TTL
- 🔒 CORS Enabled — Works from any frontend, no proxy needed
- 🚀 Zero-Config Deploy — One click to Vercel, or run standalone with Express
When Cloudflare blocks streaming requests, the API automatically tries fallback methods:
- Direct → Mirror rotation across 4 domains (miruro.to, miruro.ru, miruro.bz, miruro.tv)
- ScraperAPI → Proxy bypass via premium residential IPs ($49/mo)
- FlareSolverr → Self-hosted browser proxy
Zero-config: works out of the box. Add SCRAPER_API_KEY env var for automatic Cloudflare bypass (requires ScraperAPI premium plan for protected domains).
Streaming endpoints (
/api/episodes,/api/watch,/api/sources,/api/stream) return 500 errors when Cloudflare blocks pipe requests.This is expected behavior on Vercel's free tier. Cloudflare's bot protection blocks requests from datacenter IPs (including Vercel's). Metadata endpoints (search, info, trending, etc.) work perfectly — only streaming is affected.
| What Works | What's Blocked |
|---|---|
| Search, suggestions, filter | Episodes, sources, stream |
| Info, characters, relations | Watch, download |
| Trending, popular, schedule | All pipe-dependent endpoints |
| Genres, tags, calendar | Streaming provider data |
| All AniList-backed endpoints |
To fix streaming, set one of these environment variables in Vercel:
# Option 1: ScraperAPI (requires premium plan — $49/month)
SCRAPER_API_KEY=your_scraperapi_key
# Option 2: FlareSolverr (self-hosted, unlimited)
FLARESOLVERR_URL=http://your-flaresolverr-host:8191See How to Fix Streaming in Troubleshooting below.
flowchart TD
A["🌐 Client Request<br/>(Browser / App / curl)"] --> B["🛡️ Express Server<br/>CORS · Security Headers · Rate Limiting"]
B --> C{"💾 Cache Check<br/>(In-Memory Map)"}
C -- HIT --> D["⚡ Return Cached Response<br/>~50ms"]
C -- MISS --> E{"🔍 Which Source?"}
E -- Metadata --> F["📡 AniList GraphQL<br/>graphql.anilist.co"]
E -- Streaming --> G["📺 Miruro Pipe<br/>miruro.{to,ru,bz,tv}/api/secure/pipe"]
F --> H["AniList Response<br/>JSON"]
G --> I["Pipe Response<br/>base64url + gzip"]
H --> J["Cache + Respond<br/>JSON"]
I --> J
style A fill:#1e1e2e,stroke:#a78bfa,color:#f1f5f9
style B fill:#1e1e2e,stroke:#6366f1,color:#f1f5f9
style C fill:#1e1e2e,stroke:#f43f8e,color:#f1f5f9
style D fill:#1e1e2e,stroke:#22c55e,color:#f1f5f9
style E fill:#1e1e2e,stroke:#a855f7,color:#f1f5f9
style F fill:#1e1e2e,stroke:#06b6d4,color:#f1f5f9
style G fill:#1e1e2e,stroke:#eab308,color:#f1f5f9
style H fill:#1e1e2e,stroke:#06b6d4,color:#f1f5f9
style I fill:#1e1e2e,stroke:#eab308,color:#f1f5f9
style J fill:#1e1e2e,stroke:#22c55e,color:#f1f5f9
|
|
|
|
| Feature | Description | Status |
|---|---|---|
| 🎬 46 API Endpoints | Complete anime data coverage | ✅ |
| 🔍 Full-Text Search | Keyword search with pagination | ✅ |
| 💡 Search Suggestions | Fast autocomplete | ✅ |
| 🎯 Advanced Filtering | Genre, year, season, format, sort | ✅ |
| 🎭 Characters + Voice Actors | Full character data from AniList | ✅ |
| 🔗 Relations & Recommendations | Related anime discovery | ✅ |
| ⏭️ Skip Timestamps | OP/ED skip data | ✅ |
| 📡 12 Streaming Providers | M3U8 streaming sources | ✅ |
| 🔄 Smart Caching | In-memory Map with TTL | ✅ |
| 🚀 One-Click Deploy | Vercel button deployment | ✅ |
| 🏗️ Express Mode | Standalone server with npm start |
✅ |
| 🐳 Docker Support | Containerized deployment | ✅ |
| Source | API | Data |
|---|---|---|
| 🌸 AniList | graphql.anilist.co |
Search, info, characters, relations, recommendations, filter, schedule |
| Source | Domain | Data |
|---|---|---|
| 📺 Miruro | miruro.to |
Episodes, streaming sources (M3U8 URLs) |
| 📺 Miruro | miruro.ru |
Mirror domain |
| 📺 Miruro | miruro.bz |
Mirror domain |
| 📺 Miruro | miruro.tv |
Mirror domain |
| Provider | Provider | Provider | Provider |
|---|---|---|---|
| 🥝 kiwi | 🐝 pewe | 🐻 bee | 🍯 bonk |
| 🍌 bun | 🤝 ally | 🦄 nun | 👯 twin |
| ⚙️ cog | 🐄 moo | 🐰 hop | 📺 telli |
| Technology | Purpose | Version | Documentation |
|---|---|---|---|
| 🟢 Node.js | JavaScript runtime | >= 20 | Docs |
| ⚡ Express | HTTP server framework | 4.21 | Docs |
| ▲ Vercel Functions | Serverless deployment | — | Docs |
| 🌸 AniList GraphQL | Anime metadata API | — | Docs |
| 🌐 Axios | HTTP client | 1.8 | Docs |
| 🔧 dotenv | Environment variables | 16.4 | Docs |
| 🔒 cors | CORS middleware | 2.8 | Docs |
{
"express": "^4.21.0", // HTTP server
"axios": "^1.8.0", // HTTP client
"cors": "^2.8.5", // CORS middleware
"dotenv": "^16.4.0" // Environment variables
}| Stage | Component | Description |
|---|---|---|
| 1 | Client | Browser, app, or curl sends request |
| 2 | Express Server | Routes request, applies CORS + security headers + rate limiting |
| 3 | Cache Check | In-memory Map with TTL — hit = instant response |
| 4 | Fetch Data | AniList GraphQL or Miruro pipe endpoint |
| 5 | Decode | Pipe responses decoded: base64url → gunzip → JSON |
| 6 | Cache + Respond | Store in cache, return JSON response |
flowchart TD
A["📥 Request"] --> B{"🧠 Memory Cache<br/>(Map + TTL)"}
B -- HIT --> C["⚡ Return Cached<br/>~50ms"]
B -- MISS --> D["📡 Fetch from<br/>AniList / Miruro"]
D --> E["🔍 Decode<br/>base64url + gzip"]
E --> F["💾 Cache Result<br/>(1-5 min TTL)"]
F --> G["📤 Return Fresh"]
style A fill:#1e1e2e,stroke:#a78bfa,color:#f1f5f9
style B fill:#1e1e2e,stroke:#f43f8e,color:#f1f5f9
style C fill:#1e1e2e,stroke:#22c55e,color:#f1f5f9
style D fill:#1e1e2e,stroke:#6366f1,color:#f1f5f9
style E fill:#1e1e2e,stroke:#06b6d4,color:#f1f5f9
style F fill:#1e1e2e,stroke:#a855f7,color:#f1f5f9
style G fill:#1e1e2e,stroke:#22c55e,color:#f1f5f9
💡 Serverless functions have read-only filesystems except
/tmp. The cache uses in-memoryMapwhich survives across warm invocations.
MiruroAPI/
├── 📂 public/ # 🌐 Static files
│ ├── 📄 index.html # 📖 Premium landing page (real Miruro icons)
│ ├── 📄 docs.html # 📘 Swagger UI interactive documentation
│ ├── 📄 openapi.json # 📋 OpenAPI 3.0 spec
│ ├── 📄 icon-dark.svg # 🌙 Miruro dark mode favicon
│ ├── 📄 icon-light.svg # ☀️ Miruro light mode favicon
│ ├── 📄 icon-512x512.png # 📱 Miruro app icon
│ ├── 📄 favicon.ico # 🔖 Classic favicon
│ ├── 📄 apple-touch-icon-180x180.png # 🍎 iOS home screen icon
│ └── 📄 og-image.png # 🖼️ OG/Twitter share image
│
├── 📂 assets/ # 🎨 Scraped Miruro assets
│ ├── 📂 favicons/ # 🔖 All favicon variants
│ ├── 📂 logos/ # 🏷️ Status page logo
│ ├── 📂 fonts/ # 🔤 Inter + FontAwesome
│ └── 📂 media/ # 🖼️ Testimonial avatars
│
├── 📂 src/ # ⚙️ Core logic
│ ├── 📂 helpers/ # 🛠️ Integration modules
│ │ ├── 📄 anilist.js # 🌸 AniList GraphQL integration
│ │ ├── 📄 pipe.js # 📺 Miruro pipe integration
│ │ └── 📄 cache.js # 💾 In-memory cache with TTL
│ │
│ └── 📂 routes/ # 🛤️ Express routes
│ └── 📄 apiRoutes.js # 🌐 Main API routes (46 endpoints)
│
├── 📄 server.js # 🚀 Express server entry point
├── 📄 package.json # 📦 Dependencies & scripts
├── 📄 vercel.json # ▲ Vercel routing config
├── 📄 Dockerfile # 🐳 Docker support
├── 📄 .dockerignore # 🐳 Docker ignore
├── 📄 CHANGELOG.md # 📝 Version history
└── 📄 README.md # 📖 This file
| Requirement | Minimum | Recommended |
|---|---|---|
| 📦 Node.js | 20.x | 20.x LTS |
| 📦 npm | 9.0+ | 10.x |
| 💻 OS | Windows, macOS, Linux | Any |
# 1️⃣ Clone the repository
git clone https://github.com/Shineii86/MiruroAPI.git
cd MiruroAPI
# 2️⃣ Install dependencies
npm install
# 3️⃣ Start development server
npm run dev🌐 Open http://localhost:3000 in your browser.
# Start production server
npm start# Using yarn
yarn install
yarn dev
# Using pnpm
pnpm install
pnpm dev
# Using bun
bun install
bun dev| Variable | Default | Description |
|---|---|---|
PORT |
3000 |
Server port (Express mode only) |
ALLOWED_ORIGINS |
* |
Comma-separated allowed origins (restricts CORS in production) |
PIPE_OBF_KEY |
71951034... |
Pipe response XOR obfuscation key (hex, 32 chars) |
PRU_PROXY_KEY |
a54d389c... |
PRU proxy URL XOR key (hex, 32 chars) |
SCRAPER_API_KEY |
— | ScraperAPI key for Cloudflare bypass (requires premium plan, $49/mo) |
FLARESOLVERR_URL |
— | FlareSolverr URL for browser-based bypass (e.g., http://127.0.0.1:8191) |
⚠️ Required for production: SetALLOWED_ORIGINSto restrict CORS. SetPIPE_OBF_KEYandPRU_PROXY_KEYfor pipe decoding.📺 For streaming: Set
SCRAPER_API_KEY(requires ScraperAPI premium plan) orFLARESOLVERR_URL(free, self-hosted) to bypass Cloudflare bot protection. See How to Fix Streaming Issues.
The vercel.json file handles:
- Builds — Maps
server.jsto@vercel/node - Routes — All requests forwarded to Express
https://mirurotvapi.vercel.app/api
All endpoints return:
{
"success": true,
"results": { ... }
}To get a stream URL, follow these 3 steps:
# Step 1: Get episodes (returns provider slugs)
curl "https://mirurotvapi.vercel.app/api/episodes/20"
# Step 2: Get streaming sources (pass provider + anilistId + category + slug)
curl "https://mirurotvapi.vercel.app/api/watch/kiwi/20/sub/animepahe-1"
# Step 3: Play M3U8 in any HLS player
# Use hls.js, video.js, or native <video> with hls supportProviders return both sub and dub episode lists:
const eps = await fetch("/api/episodes/20").then(r => r.json());
const kiwi = eps.results.providers.kiwi.episodes;
// Pick sub or dub
const subEps = kiwi.sub; // [{ id: "watch/kiwi/20/sub/anikoto-1", ... }]
const dubEps = kiwi.dub; // [{ id: "watch/kiwi/20/dub/...", ... }]
// Get stream URL
const stream = await fetch(`/api/watch/kiwi/20/sub/animepahe-1`).then(r => r.json());
// stream.results.streams[0].url = "https://...m3u8"/healthNo parameters required.
curl "https://mirurotvapi.vercel.app/api/health"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/health");
console.log(resp.data);{
"success": true,
"results": {
"status": "healthy",
"version": "2.3.0",
"uptime": "0h 0m 34s",
"uptimeSeconds": 34,
"timestamp": "2026-06-09T09:55:00.884Z",
"node": "v24.14.1",
"memory": { "used": "13MB", "total": "15MB" },
"endpoints": 46,
"providers": ["kiwi","pewe","bee","bonk","bun","ally","nun","twin","cog","moo","hop","telli"]
}
}/statsNo parameters required.
curl "https://mirurotvapi.vercel.app/api/stats"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/stats");
console.log(resp.data);{
"success": true,
"results": {
"uptime": "0h 0m 34s",
"requests": { "total": 156, "errors": 3, "successRate": "98.1%" },
"cache": { "size": 12, "maxSize": 100, "ttl": "1 min" },
"endpoints": 46,
"timestamp": "2026-06-09T09:55:00.884Z"
}
}/search| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
query |
string |
Yes ✔️ | — | Search keyword |
page |
number |
No | 1 |
Page number |
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/search?query=naruto&per_page=2"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/search", {
params: { query: "naruto", per_page: 2 }
});
console.log(resp.data);{
"success": true,
"results": {
"page": 1,
"perPage": 2,
"total": 5000,
"hasNextPage": true,
"results": [
{
"id": 20,
"title": { "romaji": "NARUTO", "english": "Naruto", "native": "NARUTO -ナルト-" },
"coverImage": { "large": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx20-dE6UHbFFg1A5.jpg" },
"format": "TV",
"season": "FALL",
"seasonYear": 2002,
"episodes": 220,
"status": "FINISHED",
"averageScore": 80,
"genres": ["Action","Adventure","Comedy","Drama","Fantasy","Supernatural"]
}
]
}
}/suggestions| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
query |
string |
Yes ✔️ | — | Search keyword |
curl "https://mirurotvapi.vercel.app/api/suggestions?query=naruto"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/suggestions", {
params: { query: "naruto" }
});
console.log(resp.data);{
"success": true,
"results": [
{ "id": 20, "title": "Naruto", "title_romaji": "NARUTO", "poster": "https://s4.anilist.co/file/...", "format": "TV", "status": "FINISHED", "year": 2002, "episodes": 220 },
{ "id": 1735, "title": "Naruto: Shippuden", "title_romaji": "NARUTO: Shippuuden", "poster": "https://s4.anilist.co/file/...", "format": "TV", "status": "FINISHED", "year": 2007, "episodes": 500 }
]
}/filter| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
genre |
string |
No | — | Genre name (e.g. "Action") |
tag |
string |
No | — | Tag name |
year |
number |
No | — | Release year |
season |
string |
No | — | FALL, WINTER, SPRING, SUMMER |
format |
string |
No | — | TV, MOVIE, OVA, ONA, SPECIAL, MUSIC |
status |
string |
No | — | RELEASING, FINISHED, NOT_YET_RELEASED, CANCELLED |
sort |
string |
No | POPULARITY_DESC | Sort order |
page |
number |
No | 1 |
Page number |
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/filter?genre=Action&year=2024&season=WINTER&per_page=3"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/filter", {
params: { genre: "Action", year: 2024, season: "WINTER", per_page: 3 }
});
console.log(resp.data);{
"success": true,
"results": {
"page": 1,
"perPage": 3,
"total": 5000,
"hasNextPage": true,
"results": [
{
"id": 21,
"title": { "romaji": "ONE PIECE", "english": "One Piece" },
"coverImage": { "large": "https://..." },
"format": "TV",
"status": "RELEASING",
"averageScore": 85
}
]
}
}/trending| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/trending?per_page=3"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/trending", {
params: { per_page: 3 }
});
console.log(resp.data);{
"success": true,
"results": {
"page": 1,
"perPage": 3,
"total": 5000,
"hasNextPage": true,
"results": [
{
"id": 21,
"title": { "romaji": "ONE PIECE", "english": "One Piece" },
"coverImage": { "large": "https://..." },
"format": "TV",
"status": "RELEASING",
"averageScore": 85
}
]
}
}/popular| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/popular?per_page=3"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/popular", {
params: { per_page: 3 }
});
console.log(resp.data);/upcoming| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/upcoming?per_page=3"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/upcoming", {
params: { per_page: 3 }
});
console.log(resp.data);/recent| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
per_page |
number |
No | 20 |
Results per page |
curl "https://mirurotvapi.vercel.app/api/recent?per_page=3"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/recent", {
params: { per_page: 3 }
});
console.log(resp.data);/spotlightNo parameters required.
curl "https://mirurotvapi.vercel.app/api/spotlight"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/spotlight");
console.log(resp.data);{
"success": true,
"results": [
{
"id": 21,
"title": { "romaji": "ONE PIECE", "english": "One Piece" },
"coverImage": { "large": "https://..." },
"bannerImage": "https://...",
"format": "TV",
"episodes": null,
"status": "RELEASING",
"averageScore": 85,
"genres": ["Action","Adventure","Comedy","Fantasy"],
"description": "Gol D. Roger was known as the Pirate King..."
}
]
}/schedule| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
date |
string |
No | today | Date in YYYY-MM-DD format |
curl "https://mirurotvapi.vercel.app/api/schedule?date=2026-06-09"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/schedule", {
params: { date: "2026-06-09" }
});
console.log(resp.data);/info/:id| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
id |
number |
Yes ✔️ | — | AniList anime ID |
curl "https://mirurotvapi.vercel.app/api/info/20"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/info/20");
console.log(resp.data);{
"success": true,
"results": {
"id": 20,
"idMal": 20,
"title": { "romaji": "NARUTO", "english": "Naruto", "native": "NARUTO -ナルト-" },
"description": "Naruto Uzumaki, a hyperactive and knuckle-headed ninja...",
"coverImage": { "large": "https://s4.anilist.co/file/..." },
"bannerImage": "https://s4.anilist.co/file/...",
"format": "TV",
"season": "FALL",
"seasonYear": 2002,
"episodes": 220,
"duration": 23,
"status": "FINISHED",
"averageScore": 80,
"popularity": 694959,
"genres": ["Action","Adventure","Comedy","Drama","Fantasy","Supernatural"],
"studios": [{ "name": "Studio Pierrot", "isAnimationStudio": true }],
"startDate": { "year": 2002, "month": 10, "day": 3 },
"endDate": { "year": 2007, "month": 2, "day": 8 }
}
}/anime/:id/characters| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
id |
number |
Yes ✔️ | — | AniList anime ID |
curl "https://mirurotvapi.vercel.app/api/anime/20/characters"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/anime/20/characters");
console.log(resp.data);{
"success": true,
"results": {
"edges": [
{
"role": "MAIN",
"node": {
"id": 17,
"name": { "full": "Naruto Uzumaki", "native": "うずまきナルト" },
"image": { "large": "https://s4.anilist.co/file/..." }
},
"voiceActors": [
{
"id": 95015,
"name": { "full": "Junko Takeuchi", "native": "竹内順子" },
"languageV2": "Japanese"
}
]
}
]
}
}/anime/:id/relations| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
id |
number |
Yes ✔️ | — | AniList anime ID |
curl "https://mirurotvapi.vercel.app/api/anime/20/relations"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/anime/20/relations");
console.log(resp.data);/anime/:id/recommendations| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
id |
number |
Yes ✔️ | — | AniList anime ID |
curl "https://mirurotvapi.vercel.app/api/anime/20/recommendations"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/anime/20/recommendations");
console.log(resp.data);/episodes/:id| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
id |
number |
Yes ✔️ | — | AniList anime ID |
curl "https://mirurotvapi.vercel.app/api/episodes/20"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/episodes/20");
console.log(resp.data);{
"success": true,
"results": {
"providers": {
"kiwi": {
"meta": { "id": "1571", "title": "Naruto", "type": "TV" },
"episodes": {
"sub": [
{
"id": "watch/kiwi/20/sub/anikoto-1",
"number": 1,
"title": "Enter: Naruto Uzumaki!",
"image": "https://image.tmdb.org/t/p/original/...",
"airDate": "2002-10-03",
"audio": "sub",
"filler": false,
"fillerType": "manga_canon"
}
]
}
}
}
}
}/watch/:provider/:anilistId/:category/:slug| Parameter | Type | Mandatory | Default | Description |
|---|---|---|---|---|
provider |
string |
Yes ✔️ | — | Provider name (kiwi, pewe, etc.) |
anilistId |
number |
Yes ✔️ | — | AniList anime ID |
category |
string |
Yes ✔️ | — | sub or dub |
slug |
string |
Yes ✔️ | — | Episode slug from episodes response |
curl "https://mirurotvapi.vercel.app/api/watch/kiwi/20/sub/animepahe-1"import axios from "axios";
const resp = await axios.get("https://mirurotvapi.vercel.app/api/watch/kiwi/20/sub/animepahe-1");
console.log(resp.data);{
"success": true,
"results": {
"streams": [
{
"url": "https://vault-01.uwucdn.top/stream/.../uwu.m3u8",
"type": "hls",
"quality": "360p",
"resolution": { "width": 640, "height": 360 },
"codec": "h264",
"audio": "sub",
"fansub": "df68",
"isActive": false,
"referer": "https://kwik.cx/e/..."
},
{
"url": "https://kwik.cx/e/...",
"type": "embed",
"quality": "360p",
"codec": "h264",
"audio": "sub",
"fansub": "df68",
"isActive": false
}
],
"download": "https://pahe.win/LJmbA"
}
}To get a stream URL, follow these 3 steps:
# Step 1: Get episodes (returns provider slugs)
curl "https://mirurotvapi.vercel.app/api/episodes/20"
# => providers.kiwi.episodes.sub[0].id = "watch/kiwi/20/sub/anikoto-1"
# Step 2: Get streaming sources
curl "https://mirurotvapi.vercel.app/api/watch/kiwi/20/sub/animepahe-1"
# => streams[0].url = "https://...m3u8"
# Step 3: Play M3U8 in any HLS player
# Use hls.js, video.js, or native <video> with hls supportProviders return both sub and dub episode lists:
const eps = await fetch("/api/episodes/20").then(r => r.json());
const providers = eps.results.providers;
// Pick provider
const kiwi = providers.kiwi.episodes;
// Get sub episodes
const subEps = kiwi.sub; // [{ id: "watch/kiwi/20/sub/anikoto-1", ... }]
// Get dub episodes (if available)
const dubEps = kiwi.dub || []; // [{ id: "watch/kiwi/20/dub/...", ... }]<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<video id="player" controls></video>
<script>
const video = document.getElementById('player');
const streamUrl = 'https://...m3u8'; // From /api/watch response
if (Hls.isSupported()) {
const hls = new Hls();
hls.loadSource(streamUrl);
hls.attachMedia(video);
} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
video.src = streamUrl; // Native HLS (Safari)
}
</script>{
"success": true,
"results": { ... }
}{
"success": false,
"message": "Error description"
}| Field | Type | Description | Example |
|---|---|---|---|
id |
number |
AniList ID | 20 |
title |
object |
{ romaji, english, native } |
{ "romaji": "NARUTO" } |
coverImage |
object |
{ large } |
{ "large": "https://..." } |
format |
string |
Anime format | "TV" |
status |
string |
Release status | "FINISHED" |
episodes |
number |
Total episodes | 220 |
averageScore |
number |
AniList score | 80 |
genres |
string[] |
Genre list | ["Action","Adventure"] |
| Field | Type | Description | Example |
|---|---|---|---|
id |
string |
Watch slug | "watch/kiwi/20/sub/anikoto-1" |
number |
number |
Episode number | 1 |
title |
string |
Episode title | "Enter: Naruto Uzumaki!" |
image |
string |
Thumbnail URL | "https://..." |
airDate |
string |
Air date | "2002-10-03" |
audio |
string |
sub or dub |
"sub" |
filler |
boolean |
Is filler episode | false |
| Field | Type | Description | Example |
|---|---|---|---|
url |
string |
M3U8 or embed URL | "https://...m3u8" |
type |
string |
hls or embed |
"hls" |
quality |
string |
Video quality | "720p" |
resolution |
object |
{ width, height } |
{ "width": 1280, "height": 720 } |
codec |
string |
Video codec | "h264" |
audio |
string |
sub or dub |
"sub" |
fansub |
string |
Fansub group | "df68" |
isActive |
boolean |
Is active stream | false |
referer |
string |
Referer URL | "https://kwik.cx/e/..." |
- Click the button above (or import manually on vercel.com)
- Vercel auto-detects the project — no config needed
- Your API is live! 🎉
# Or use Vercel CLI
npx vercel --prod# Clone and install
git clone https://github.com/Shineii86/MiruroAPI.git
cd MiruroAPI && npm install
# Start production server
npm start
# → http://localhost:3000# Build
docker build -t miruroapi .
# Run
docker run -p 3000:3000 miruroapi| Command | Description | Details |
|---|---|---|
npm run dev |
🔥 Start development server | Runs on localhost:3000 |
npm start |
🚀 Start production server | node server.js |
| Metric | Value |
|---|---|
| ⚡ Cold start | ~500ms |
| 🔄 Warm response | ~50-200ms |
| 💾 Cache hit | ~10ms |
| 💾 Cache TTL | 1-5 minutes |
| ⏱️ Rate limit | 100 req/min/IP |
| 💻 Memory usage | ~15MB |
| 📦 Cache max size | 100 entries |
- 💾 In-memory cache — Map-based with TTL expiration
- ⚡ Pipe decoding — Efficient base64url + gzip decompression
- 🎯 Selective fetching — Only AniList GraphQL or Miruro pipe
- 📁 Minimal deps — Only 4 production dependencies
- 🔄 Graceful fallback — Empty arrays on error, never crashes
| Version | Date | Key Changes |
|---|---|---|
| 2.3.0 | 2026-07-02 | Self-healing fallback system — multi-method pipe recovery, /api/pipe-health endpoint, ScraperAPI + FlareSolverr support |
| 2.1.4 | 2026-06-25 | Security hardening — XOR keys to env vars, CORS restriction, input sanitization, bug fixes (multi-search, deepTranslate, getBestStream) |
| 2.1.3 | 2026-06-25 | Diagnostic sweep — tags, random, character/staff 404 fixes, pipe retry with backoff, security headers |
| 2.1.2 | 2026-06-25 | Streaming architecture — pru proxy decode, CDN CORS proxy, raw stream URLs |
| 2.1.1 | 2026-06-25 | Pipe XOR decoding fix — responses now decode correctly |
| 2.1.0 | 2026-06-25 | Provider capabilities, enriched metadata, skip times, 12 providers |
| 2.0.1 | 2026-06-24 | Streaming improvements — better subtitle extraction, quality fallback |
| 2.0.0 | 2026-06-25 | Major upgrade — 44 endpoints, compression, streaming improvements |
📝 See CHANGELOG.md for the full version history.
| Problem | Cause | Solution |
|---|---|---|
❌ npm install fails |
Node.js version too old | Upgrade to Node.js 20+ (node -v) |
| ❌ CORS errors | Origin not in ALLOWED_ORIGINS | Set ALLOWED_ORIGINS env var or use * for all origins |
| ❌ 404 on API routes | Wrong URL format | Use /api/ prefix, not just / |
| ❌ Empty episodes | Provider not available | Check which providers return data for the anime |
| ❌ Deploy fails on Vercel | Build error | Check node server.js locally first |
| ❌ Slow first request | Serverless cold start | Normal — first request after idle takes ~500ms |
| ❌ Rate limited | Too many requests | Cache reduces this — wait for TTL expiry |
| ❌ Streaming 500 errors | Cloudflare blocks pipe requests | Set SCRAPER_API_KEY or FLARESOLVERR_URL (see below) |
Streaming endpoints fail because Cloudflare's bot protection blocks requests from Vercel's datacenter IPs. The pipe endpoint (miruro.to/api/secure/pipe) returns HTTP 403 to any request that doesn't come from a residential IP or real browser.
Your App (Vercel) → Cloudflare WAF → miruro.to/api/secure/pipe → 403 Blocked
Cloudflare detects:
- Datacenter IP ranges (Vercel, AWS, GCP, etc.)
- Missing browser fingerprint headers
- Non-residential traffic patterns
FlareSolverr runs a headless browser that bypasses Cloudflare automatically. This is the most reliable fix.
# 1. Run FlareSolverr on your own server
docker run -d --name flaresolverr -p 8191:8191 ghcr.io/flaresolverr/flaresolverr:latest
# 2. Add to Vercel environment variables:
FLARESOLVERR_URL=http://your-server-ip:8191Cost: Free (self-hosted). Requires a VPS with Docker.
Requirements:
- 1GB+ RAM
- Public IP address
- Docker installed
ScraperAPI proxies your requests through residential IPs, bypassing Cloudflare.
# 1. Sign up at https://www.scraperapi.com/
# 2. Get your API key from the dashboard
# 3. Add to Vercel environment variables:
SCRAPER_API_KEY=your_api_key_hereCost: $49/month (premium plan required for protected domains like Miruro).
If you run the API on your own VPS (not Vercel), requests come from your IP which may not be blocked.
# Clone and install
git clone https://github.com/Shineii86/MiruroAPI.git
cd MiruroAPI && npm install
# Start on your own server
npm start
# → http://your-server:3000After setting an environment variable, check if streaming works:
# Check pipe health
curl "https://mirurotvapi.vercel.app/api/pipe-health"
# Test episodes
curl "https://mirurotvapi.vercel.app/api/episodes/20"Expected response when streaming works:
{
"success": true,
"results": {
"methods": {
"direct": { "status": "failed" },
"scraperapi": { "status": "working", "latency": "1200ms" }
},
"working": 1,
"recommendation": "ScraperAPI is working. Streaming endpoints are functional."
}
}Streaming is blocked on all cloud platforms. We need help! If you can implement any of these, PRs are welcome:
| Tool | Language | How It Works | Notes |
|---|---|---|---|
| nodriver | Python | CDP-based browser automation, bypasses automation detection | Successor to undetected-chromedriver |
| Camoufox | Python | Stealth Firefox with fingerprint spoofing | 82% baseline Turnstile bypass |
| curl_cffi | Python | TLS fingerprint impersonation | Lightweight, no browser needed |
| FlareSolverr | Docker | Headless Chrome proxy server | Can't solve interactive CAPTCHAs |
| patchright | Python | Patched Playwright fork | Drop-in Playwright replacement |
| scrapy-impersonate | Python | Scrapy with TLS impersonation | For Scrapy users |
| Service | Free Tier | Price | API Example |
|---|---|---|---|
| Scrape.do | 1,000 credits/mo | $0.08/1K | https://api.scrape.do/?url=...&token=... |
| ZenRows | Trial | $49/mo | https://api.zenrows.com/?url=...&apikey=... |
| ScrapingBee | Trial | $49/mo | https://app.scrapingbee.com/api/v1/?... |
- Node.js integration — Add
nodriverorCamoufoxas a pipe fallback insrc/helpers/pipe.js - Scrape.do adapter — Simple HTTP proxy, 1K free credits/mo, no browser needed
- Playwright stealth mode — Use
patchrightorplaywright-extra-stealthfor browser-based bypass - Residential proxy support — Add proxy rotation for pipe requests
- Fork the repo
- Add your bypass method as a new fallback in
src/helpers/pipe.js - Add your API key to
.env.example - Test with:
curl http://localhost:3000/api/episodes/20 - Submit a PR
# Example: Add Scrape.do as a fallback
SCRAPE_DO_TOKEN=your_token_here# Run with verbose logging
NODE_ENV=development npm run dev
# Test specific endpoint
curl http://localhost:3000/api/health
curl http://localhost:3000/api/search?query=naruto
curl http://localhost:3000/api/episodes/20🔍 How do I search for anime?
Use
/api/search?query=your+search. Results include title, cover, format, status, episodes, and score. For autocomplete suggestions, use /api/suggestions?query=your+search which returns fast suggestions.
📺 How do I get episode lists?
Use
/api/episodes/:id where :id is the AniList anime ID (e.g., 20 for Naruto). The response includes all providers with sub/dub episode lists.
🎯 How does filtering work?
Use
/api/filter with query params. Combine genre, year, season, format, status, and sort for advanced filtering. All params are optional.
📡 Can I use this in my frontend app?
Yes! CORS is enabled for allowed origins. Set the `ALLOWED_ORIGINS` environment variable to your frontend domain(s), or use `*` for all origins. Example:
fetch('https://mirurotvapi.vercel.app/api/search?query=naruto')
🔄 How often does the data refresh?
The cache TTL is 1-5 minutes depending on the endpoint. After that, the next request triggers a fresh fetch from AniList/Miruro.
🌐 Can I self-host this?
Yes! Use
npm start to run the Express server on any VPS, Docker container, or PaaS. The Vercel serverless functions are optional — server.js handles everything.
🎬 Which streaming providers are available?
12 providers: kiwi, pewe, bee, bonk, bun, ally, nun, twin, cog, moo, hop, telli. Not all anime are available on every provider.
❌ Why are streaming endpoints returning 500 errors?
Cloudflare's bot protection blocks requests from Vercel's datacenter IPs. The pipe endpoint (
miruro.to/api/secure/pipe) returns HTTP 403. To fix this, set SCRAPER_API_KEY (requires ScraperAPI premium plan, $49/mo) or FLARESOLVERR_URL (self-hosted, free) in your Vercel environment variables. See How to Fix Streaming Issues above.
🔍 Why does /api/staff/:id return 404?
Some AniList staff IDs don't exist or have limited data. Try searching with
/api/staff?query=name instead. This is an AniList API limitation, not a bug.
📊 How do I check if streaming is working?
Use
/api/pipe-health to check which pipe methods are working. It shows the status of Direct, ScraperAPI, and FlareSolverr fallback methods with latency and error details.
- 🔐 API key authentication — Per-user rate limits
- 📊 Analytics endpoint — Usage statistics
- 🌙 Dark/light mode — Theme toggle for landing page
- 📱 PWA support — Install as app on mobile
- 🔔 Webhook notifications — Push new episodes to Discord
- 🗄️ Redis cache — Persistent caching for serverless
- 🌐 Multi-language — Sub/dub language metadata
- 📦 NPM package — Client SDK for easy integration
- 🎬 46 API endpoints covering all data
- 🔍 Full-text search with pagination
- 💡 Search suggestions for autocomplete
- 🎯 Advanced filtering (genre, year, season, format, sort)
- 🎭 Characters + voice actors from AniList
- 🔗 Relations and recommendations
- ⏭️ Skip timestamps (OP/ED)
- 📡 12 streaming providers with M3U8 URLs
- 🔄 Smart caching with configurable TTL
- 🚀 One-click Vercel deployment
- 🐳 Docker support
- 📘 Swagger UI interactive docs
- 📖 Comprehensive documentation with real API data
- 🔒 Security hardening (XOR keys in env vars, CORS restriction, input sanitization)
- 🛡️ Security headers at CDN level
Contributions are welcome and appreciated! Here's how you can help:
|
Found something broken? |
Have an idea? |
Ready to contribute code? |
# 1️⃣ Fork the repository
# Click the "Fork" button on GitHub
# 2️⃣ Clone your fork
git clone https://github.com/YOUR_USERNAME/MiruroAPI.git
cd MiruroAPI
# 3️⃣ Create a feature branch
git checkout -b feature/amazing-feature
# 4️⃣ Make your changes
# Edit files, add features, fix bugs...
# 5️⃣ Commit your changes
git commit -m 'feat: add amazing feature'
# 6️⃣ Push to your fork
git push origin feature/amazing-feature
# 7️⃣ Open a Pull Request
# Go to GitHub and create a PR- ✅ Follow the existing code style and documentation conventions
- ✅ Write meaningful commit messages (use conventional commits)
- ✅ Update CHANGELOG.md with your changes
- ✅ Keep PRs focused — one feature or fix per PR
- ✅ Add JSDoc comments for new functions
- ❎ Don't commit
node_modulesor cache files - ❎ Don't add unrelated changes to a single PR
| Source | About |
|---|---|
| AniList | Anime metadata API (GraphQL) |
| Miruro | Anime streaming site — source for episodes and streaming |
| Miruro TO | Mirror domain |
| Miruro BZ | Mirror domain |
| Miruro RU | Mirror domain |
- Express — Fast, unopinionated web framework
- AniList GraphQL — Rich anime metadata
- Axios — Promise-based HTTP client
- Vercel — Serverless deployment platform
- Shields.io — Badges for README
- Star History — GitHub star history charts
- Capsule Render — Header banner generator
This project is licensed under the MIT License.
Free to use, modify, and distribute — see the LICENSE file for details.
Shinei Nouzen
Full-Stack Developer & Anime Enthusiast
⭐ If you found this project useful, please consider giving it a star!
Made With ❤️ For The Anime Community
© Shinei Nouzen. All Rights Reserved.