Discover/Zinnes API
live

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.

This API takes change requests — .
Endpoint health
monitored
get_comic_details
Checks pendingself-healing
Endpoints
1
Updated
2h ago
This call costs1 credit / call— charged only on success
Try it
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}.
api.parse.bot/scraper/59709afd-7ae4-4c06-94d9-d2218d723423/<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/59709afd-7ae4-4c06-94d9-d2218d723423/get_comic_details?comic_id=661' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
comic_idrequiredstringNumeric ID of the comic on Zinnes (e.g. '661' for Istella, '12' for Taico). Visible in the comic page URL path /obra/{id}/{slug}.
Response
{
  "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.