Zinnes APIzinnes.com.br ↗
Retrieve detailed information about comics hosted on Zinnes, Brazil's popular webcomic platform, including titles, descriptions, and metadata. Use this to discover and explore Brazilian webcomics directly from the Zinnes catalog.
curl -X GET 'https://api.parse.bot/scraper/59709afd-7ae4-4c06-94d9-d2218d723423/get_comic_details?comic_id=661' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve detailed information about a comic (obra) by its numeric ID. Returns the comic's URL, thumbnail, categories (category, genre, type), title, synopsis, author name and username, chapter list with per-chapter metadata, total views, total likes, and age rating. One upstream request per call; the chapter list is returned in full.
| Param | Type | Description |
|---|---|---|
| comic_idrequired | string | Numeric ID of the comic on Zinnes (e.g. '661' for Istella, '12' for Taico). Visible in the comic page URL path /obra/{id}/{slug}. |
{
"type": "object",
"fields": {
"id": "integer — comic's numeric ID",
"url": "string — full URL to the comic page on zinnes.com.br",
"likes": "integer — total like count",
"title": "string — comic title",
"views": "integer — total view count",
"chapters": "array of chapter objects with id, name, description, views, likes_count, comments, release_date, and thumbnail",
"synopsis": "string — comic description/synopsis",
"thumbnail": "string — URL to the comic's thumbnail image",
"age_rating": "string — age classification code (e.g. 'A14', 'L')",
"categories": "array of strings — includes category, genre, and type labels",
"author_name": "string — display name of the author",
"chapters_count": "integer — number of chapters",
"author_username": "string — author's username (without @)"
},
"sample": {
"data": {
"id": 661,
"url": "https://www.zinnes.com.br/obra/661/istella",
"likes": 62,
"title": "Istella",
"views": 2285,
"chapters": [
{
"id": 2770,
"name": "Gigante Vermelha",
"views": 213,
"comments": 2,
"thumbnail": "https://apizinnes.com.br/storage/title-thumbs/r2FIaOVEBQajkj4d6fxHPm0xAnHc7kLy.avif",
"description": "As Piratas Rubra chegam ao planeta Terra com um objetivo muito peculiar.",
"likes_count": 7,
"release_date": "19/02/2026"
}
],
"synopsis": "O universo é uma imensidão de mistérios, onde o novo e desconhecido são sinônimos de aventura! Essa é a história da pirata rubra, Istella.",
"thumbnail": "https://apizinnes.com.br/storage/project-thumbs/MGB9vTjC5xn6EszbaVfj4WlT7AOcdsvM.avif",
"age_rating": "A14",
"categories": [
"Quadrinhos",
"Ação",
"Série"
],
"author_name": "Gilton Ferreira",
"chapters_count": 33,
"author_username": "gilton"
},
"status": "success"
}
}About the Zinnes API
The Zinnes API on Parse exposes 1 endpoint for the publicly available data on zinnes.com.br. 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.