Discover/Tanogibi API
live

Tanogibi APItanogibi.com.br

Retrieve title metadata, author info, chapter counts, categories, and read counts from Tá No Gibi, Brazil's webcomic platform. 2 endpoints.

This API takes change requests — .
Endpoint health
verified 1h ago
get_item_details
search_items
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Tanogibi API?

The Tá No Gibi API provides 2 endpoints for accessing structured data from Brazil's webcomic platform, covering manga, light novels, and comics. The get_item_details endpoint returns 13 fields per title — including synopsis, age rating, volume count, author name, and total reads — while search_items lets you query the full catalog by title, category, or content type with accent-insensitive matching.

This call costs10 credits / call— charged only on success
Try it
URL slug or full URL of the title page. Examples: 'epopeia-do-fim' or 'https://tanogibi.com.br/titles/epopeia-do-fim.html'.
api.parse.bot/scraper/9eba156f-e954-47c0-8652-eb1b028065de/<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/9eba156f-e954-47c0-8652-eb1b028065de/get_item_details?slug=epopeia-do-fim' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace tanogibi-com-br-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Tá No Gibi API — search titles and drill into full details."""
from parse_apis.tanogibi_com_br_api import TaNoGibi, TitleNotFound

client = TaNoGibi()

# Search for fantasy titles on the platform; limit total items fetched.
for result in client.titles.search(query="fantasia", limit=5):
    print(result.title, result.categories)

# Drill down: take the first search hit and fetch its full details.
# The get() endpoint accepts a slug or the full canonical URL.
hit = client.titles.search(query="epopeia", limit=1).first()
if hit is not None:
    try:
        title = client.titles.get(slug=hit.url)
    except TitleNotFound:
        print("Title not found.")
    else:
        print(title.title, f"— by {title.author_name}")
        print(f"  {title.chapter_count} chapters, {title.volume_count} volumes, {title.reads} reads")
        print(f"  Age rating: {title.age_rating}")
        print(f"  Categories: {', '.join(title.categories)}")

        if title.next_chapter_date is not None:
            print(f"  Next chapter: {title.next_chapter_date}")

        for link in title.author_social_links:
            print(f"  {link.platform}: {link.url}")

# Direct point lookup by slug.
title = client.titles.get(slug="epopeia-do-fim")
print(title.title, title.synopsis[:80])

print("exercised: titles.search / titles.get / TitleNotFound")
All endpoints · 2 totalmissing one? ·

Retrieve full details of a title on Tá No Gibi by its URL slug. Returns metadata including poster and logo images, categories, synopsis, author information with social links, financial contribution link, total reads, next chapter date, chapter count, volume count, and age rating. Makes multiple requests to gather data from the page and its underlying database; expect moderate latency.

Input
ParamTypeDescription
slugrequiredstringURL slug or full URL of the title page. Examples: 'epopeia-do-fim' or 'https://tanogibi.com.br/titles/epopeia-do-fim.html'.
Response
{
  "type": "object",
  "fields": {
    "url": "Canonical URL of the title page on tanogibi.com.br",
    "reads": "Total read count across all available chapters",
    "title": "Title name",
    "synopsis": "Full synopsis/description text",
    "age_rating": "Age rating label (e.g. 'Livre', '10 anos', '16 anos')",
    "categories": "Array of category names (e.g. Fantasia, Ação, Romance)",
    "logo_image": "URL of the title's logo image",
    "author_name": "Display name of the title's author",
    "poster_image": "URL of the title's poster/cover image",
    "volume_count": "Number of volumes",
    "chapter_count": "Number of currently available chapters",
    "next_chapter_date": "Date of the next chapter release (ISO date string), or null",
    "author_social_links": "Array of objects with platform name and url for author's social media",
    "financial_contribution_link": "URL to the title's financial contribution/crowdfunding page, or null"
  },
  "sample": {
    "data": {
      "url": "https://tanogibi.com.br/titles/epopeia-do-fim.html",
      "reads": 1791,
      "title": "Epopeia do Fim",
      "synopsis": "Esta é uma história que acompanha os jovens filhos dos Deuses do Olimpo...",
      "age_rating": "16 anos",
      "categories": [
        "Fantasia",
        "Ação",
        "Romance"
      ],
      "logo_image": "https://firebasestorage.googleapis.com/v0/b/tanogibi-4c2ab.firebasestorage.app/o/titles%2FYMx1AYWRoMVJKTAN4fZsuF85tTs2%2F100006%2Flogo.png?alt=media&token=ae5c4ffd-9d6b-43b9-8b89-e1d9f3cf1db4",
      "author_name": "Altair Vesta",
      "poster_image": "https://firebasestorage.googleapis.com/v0/b/tanogibi-4c2ab.firebasestorage.app/o/titles%2FYMx1AYWRoMVJKTAN4fZsuF85tTs2%2F100006%2Fcapa.jpg?alt=media&token=b84b84c3-86ff-40d4-a072-bc26f0ca4bc9",
      "volume_count": 8,
      "chapter_count": 155,
      "next_chapter_date": "2026-09-02",
      "author_social_links": [
        {
          "url": "https://www.instagram.com/altairvesta/",
          "platform": "Instagram"
        },
        {
          "url": "https://x.com/altairvesta",
          "platform": "X (Twitter)"
        }
      ],
      "financial_contribution_link": "https://www.catarse.me/panteao_do_altair_440b"
    },
    "status": "success"
  }
}

About the Tanogibi API

Title Details

The get_item_details endpoint accepts a slug parameter — either a short slug like epopeia-do-fim or a full URL — and returns the complete metadata record for that title. Response fields include title, synopsis, age_rating (e.g. Livre, 16 anos), categories (an array such as ["Fantasia", "Ação"]), reads (cumulative read count), volume_count, poster_image, logo_image, author_name, and the author's associated social and financial contribution links. This makes it suitable for building title detail pages or enriching a local catalog with up-to-date read metrics.

Catalog Search

The search_items endpoint accepts a query string and returns all matching titles as an array of objects, each containing url, thumbnail, categories, and title. Matching is case-insensitive and accent-insensitive, consistent with the behavior on the site itself. The response also includes a total count of matched results. Queries can match on title name, category labels, or content type, so a search for fantasia will surface titles tagged in that genre regardless of diacritics.

Coverage Notes

Both endpoints cover publicly listed titles on tanogibi.com.br. The get_item_details endpoint surfaces the next_chapter_date field where the platform publishes a scheduled release date. Age ratings follow the platform's own labeling system (Brazilian content classification). Author social links and financial contribution links are returned when present on the title page.

Reliability & maintenanceVerified

The Tanogibi API is a managed, monitored endpoint for tanogibi.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tanogibi.com.br changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official tanogibi.com.br API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Brazilian webcomic discovery app that filters titles by categories and age_rating
  • Track cumulative reads over time for popularity analysis across the Tá No Gibi catalog
  • Aggregate author_name and social link data to compile a directory of Brazilian webcomic creators
  • Display title cover art using poster_image and logo_image in a third-party reader interface
  • Monitor next_chapter_date to send release notifications for followed titles
  • Index the full catalog via search_items to power autocomplete or genre-browsing in a reading app
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Tá No Gibi have an official public developer API?+
Tá No Gibi does not publish an official developer API or documented public endpoint for third-party access to its catalog data.
What does `get_item_details` return beyond basic title information?+
Beyond the title name and synopsis, it returns age_rating, categories (array), reads (total across all chapters), volume_count, poster_image, logo_image, author_name, social profile links, a financial contribution link, and next_chapter_date when the platform has published one.
Does the search endpoint support filtering by category or age rating?+
The search_items endpoint matches the query string against title name, categories, and content type, so searching a category name like Romance returns titles tagged with it. It does not accept discrete filter parameters for age_rating or volume_count. You can fork the API on Parse and revise it to add structured filter parameters on top of the existing search behavior.
Are individual chapter details or chapter-level read counts available?+
Not currently. The API returns aggregate reads across all chapters and a volume_count at the title level, but per-chapter metadata, individual chapter URLs, and chapter-level read counts are not exposed. You can fork the API on Parse and revise it to add a chapter-listing endpoint.
How fresh is the data returned by these endpoints?+
Each request retrieves the current state of the title or search results as published on tanogibi.com.br at the time of the call. There is no cached snapshot or historical data — fields like reads and next_chapter_date reflect whatever the platform is currently showing.
Page content last updated . Spec covers 2 endpoints from tanogibi.com.br.
Related APIs in EntertainmentSee all →
tapas.io API
Look up detailed information about any comic or novel on Tapas.io to view titles, cover images, reader statistics, author names, and story synopses all in one place. Perfect for discovering new series or getting comprehensive details about your favorite Tapas stories.
estante-nacional.com.br API
Search and discover Brazilian comics, manga, web novels, and animations from the Estante Nacional catalog. Find content by title, author, or genre to explore the full range of Portuguese-language entertainment media available in this comprehensive collection.
fliptru.com.br API
Retrieve detailed information about Brazilian webcomics from Fliptru, including metadata, engagement statistics, and age ratings. Access comic information to discover new stories, analyze audience engagement, and understand content classifications on the platform.
zinnes.com.br API
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.
webnovel.com API
Look up comprehensive details about any webnovel including its title, cover image, synopsis, category, chapter count, view count, ranking, ratings, and tags in one request. Perfect for finding book information, comparing rankings, or discovering new titles across different categories.
webtoons.com API
Search and discover Webtoon series by title or genre, view episode details and images, check rankings and trending content, and learn about authors and their works. Access comprehensive information about original and canvas series to find your next favorite read.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
mangaupdates.com API
Track manga releases by day, look up detailed series information and genres, and monitor site statistics — all from MangaUpdates. Access release schedules, series metadata, and platform insights to stay updated on the latest manga.