Discover/Karikari API
live

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.

This API takes change requests — .
Endpoint health
monitored
search_items
Checks pendingself-healing
Endpoints
1
Updated
3h ago
This call costs1 credit / call— charged only on success
Try it
Page number for client-side pagination (20 items per page).
Search keyword to match against obra titles and related metadata.
api.parse.bot/scraper/bcdf64b1-0b1d-4b7c-b503-b3c1b2718e60/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for client-side pagination (20 items per page).
queryrequiredstringSearch keyword to match against obra titles and related metadata.
Response
{
  "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.