Comick.io Manga Zip Cbz Downloader avatar
Comick.io Manga Zip Cbz Downloader

Pricing

Pay per event

Go to Store
Comick.io Manga Zip Cbz Downloader

Comick.io Manga Zip Cbz Downloader

Developed by

Jan

Jan

Maintained by Community

This Apify Actor allows you to download manga chapters from Comick.io. It fetches manga images for a given title and selected chapters or volume, then packages them into a ZIP or CBZ file for easy download.

0.0 (0)

Pricing

Pay per event

0

Total users

4

Monthly users

4

Runs succeeded

50%

Last modified

17 hours ago

You can access the Comick.io Manga Zip Cbz Downloader programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "url": "https://comick.io/comic/00-sousou-no-frieren",
12 "startingChapter": 1,
13 "endingChapter": 5,
14 "language": "en",
15 "format": "cbz"
16};
17
18// Run the Actor and wait for it to finish
19const run = await client.actor("panjan/comick-io").call(input);
20
21// Fetch and print Actor results from the run's dataset (if any)
22console.log('Results from dataset');
23console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
24const { items } = await client.dataset(run.defaultDatasetId).listItems();
25items.forEach((item) => {
26 console.dir(item);
27});
28
29// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Comick.io Manga Zip Cbz Downloader API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Comick.io Manga Zip Cbz Downloader API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: