Welcome to the Unofficial Komikcast REST API dashboard. This API provides structured JSON responses for manga, manhwa, and manhua data from Komikcast, fully equipped with caching and bypass proxies to ensure reliability.
If you are using the Vercel-hosted version of this API, please be aware that requests are aggressively rate-limited to stay within the Hobby tier limits. Local deployment is highly recommended for heavy scraping or automation tasks.
# 1. Clone the repositorygit clone https://github.com/Wakype/komikcast-api.git# 2. Install dependencies (PNPM recommended)pnpm install# or runnpm install# 3. Environment Setup# Copy .env.example to .env.localcp .env.example .env.local# 4. Cloudflare Worker (Bypass Cloudflare Block)# If requests fail (403), deploy the proxy:# 1. Open Cloudflare Dashboard > Workers & Pages# 2. Create a new Worker# 3. Copy contents from cloudflare-worker/worker.js# 4. Paste into the worker editor and deploy# 5. Set SCRAPER_PROXY_URL in .env.local to your worker URL# 5. Run development serverpnpm dev# or runnpm dev