Karikari APIkarikari.app ↗
Search and discover webcomics, manga, and HQ titles available on KariKari, Brazil's leading comics platform. Find exactly what you're looking for by browsing their catalog of graphic novels and digital comics content.
curl -X GET 'https://api.parse.bot/scraper/bcdf64b1-0b1d-4b7c-b503-b3c1b2718e60/search_items?page=1&query=rei' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for obras (works) on KariKari by keyword. Returns matching items with URL, thumbnail, rating, view count, title, and author. The site returns all matching results in a single upstream call; the scraper paginates them locally at 20 items per page. Page 1 is the default. When the query matches nothing the items array is empty.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for client-side pagination (20 items per page). |
| queryrequired | string | Search keyword to match against obra titles and related metadata. |
{
"type": "object",
"fields": {
"page": "current page number",
"items": "array of obra objects, each with url, thumbnail, rating, views, title, and author",
"total": "total number of matching results from the site",
"has_more": "whether more pages are available after the current one",
"total_pages": "total number of pages at 20 items per page"
},
"sample": {
"data": {
"page": 1,
"items": [
{
"url": "https://karikari.app/obra/rei-morel",
"title": "Rei Morel",
"views": 31,
"author": "Helotoons",
"rating": 4.17,
"thumbnail": "https://cdn.karikari.app/obras/263be5d6-f052-4e87-b5c0-96a46771bbfb/capas/capa_vertical-6412837e-c19c-4cc9-9448-85baa609558a.png"
},
{
"url": "https://karikari.app/obra/reincarnation-as-a-kingdom",
"title": "Reincarnation as a kingdom",
"views": 7,
"author": "Boom_onomato",
"rating": 0,
"thumbnail": "https://cdn.karikari.app/obras/65c7111b-ef98-4318-bffe-c9a8ec8b05c2/capas/capa_vertical-41d72a52-18f0-4af4-9100-1036e1186a52.webp"
}
],
"total": 23,
"has_more": true,
"total_pages": 2
},
"status": "success"
}
}About the Karikari API
The Karikari API on Parse exposes 1 endpoint for the publicly available data on karikari.app. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.