Mangarida API

Mangarida API provides an easy/decluttered way for accessing/wrapping the api.comick.fun API.

API Reference

Search for a comic

  GET /search
Parameter Type Description Required
query string Your search query.

Get comic details

  GET /manga/${mangaId}
Parameter Type Description Required
mangaId string Id of comic to fetch.

Get trending

  GET /trending

Get all chapters for a comic

  GET /chapters/${mangaId}
Parameter Type Description Required
mangaId string Id of comic to fetch chapters for.

Get pages for a chapter

  GET /read/${chapterId}
Parameter Type Description Required
chapterId string Id of chapter to fetch pages for.

Run Locally

Clone the project

  git clone https://github.com/vo1x/api.mangarida.vercel.app.git

Go to the project directory

  cd api.mangarida.vercel.app/

Install dependencies and run the development server

Node
  npm install
  npm run dev
Bun
  bun install
  bun run dev