🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Manga
ComicK
Image Proxy

Image Proxy

Proxy manga images to bypass CORS and hotlink protection. Use this endpoint to display manga images in your application.

Route Schema (URL)

https://api.consumet.org/manga/comick/proxy?url={imageUrl}

Query Parameters

ParameterTypeDescriptionRequired?Default
urlstringThe image URL to proxyYes

Request Samples

const imageUrl = "https://example.com/manga-image.jpg";
const proxyUrl = `https://api.consumet.org/manga/comick/proxy?url=${encodeURIComponent(imageUrl)}`;
 
// Use in img tag
const img = document.createElement('img');
img.src = proxyUrl;

Response Schema

MIME Type: image/jpeg or image/png or image/webp

Returns the binary image data with appropriate content-type header.