Discover/Fliptru API
live

Fliptru APIfliptru.com.br

Access comic metadata, engagement stats, rankings, and search from Fliptru, Brazil's webcomic platform. 9 endpoints covering titles, authors, views, and more.

This API takes change requests — .
Endpoint health
verified 1h ago
get_comic
get_most_popular_list
get_best_seller_list
get_promoted_list
get_series_list
9/9 passing latest checkself-healing
Endpoints
9
Updated
2h ago

What is the Fliptru API?

The Fliptru API exposes 9 endpoints covering comic metadata, engagement statistics, ranked listings, and search across Fliptru's Brazilian webcomic catalog. The get_comic endpoint returns 10 fields per title — including view counts, like counts, chapter totals, author username, category, and age rating — identified by URL slug. Listing endpoints cover most-popular, best-seller, promoted, series, completed series, one-shots, and webtoons, each returning paginated card objects.

This call costs1 credit / call— charged only on success
Try it
URL slug of the comic (the path segment after /comic/, e.g. 'sense-life', 'lampiao').
api.parse.bot/scraper/9d8b4d73-182b-4025-a47f-b91a4d30be83/<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/9d8b4d73-182b-4025-a47f-b91a4d30be83/get_comic?slug=sense-life' \
  -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 fliptru-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: Fliptru Comics API — browse listings, search, and fetch comic details."""
from parse_apis.fliptru_com_br_api import Fliptru, ComicNotFound

client = Fliptru()

# Browse the best-seller ranking, capped at 5 items.
for listing in client.listings.best_sellers(limit=5):
    print(listing.title, "|", listing.category, "|", listing.age_rating)

# Search for a comic by name, then fetch its full detail.
hit = client.search_hits.search(query="sense", limit=1).first()
if hit is not None:
    # The search hit URL ends with the slug we need.
    slug = hit.url.rstrip("/").rsplit("/", 1)[-1]
    try:
        comic = client.comics.get(slug=slug)
    except ComicNotFound:
        print("Comic not found for slug:", slug)
    else:
        print(comic.title, "by", comic.author)
        print("Chapters:", comic.chapters, "| Views:", comic.views, "| Likes:", comic.likes)

# List a few promoted comics.
for listing in client.listings.promoted(limit=3):
    print(listing.title, listing.type, listing.url)

print("exercised: listings.best_sellers / search_hits.search / comics.get / listings.promoted")
All endpoints · 9 totalmissing one? ·

Retrieve detailed information for a single comic on Fliptru by its URL slug. Returns the comic's thumbnail image URL, category, title, author, chapter count, view count, likes, comments, saves, shares, and age rating. One upstream request per call; no pagination.

Input
ParamTypeDescription
slugrequiredstringURL slug of the comic (the path segment after /comic/, e.g. 'sense-life', 'lampiao').
Response
{
  "type": "object",
  "fields": {
    "autor": "Author username",
    "likes": "Like count as displayed (e.g. '99.3K')",
    "salvos": "Save/bookmark count as displayed (e.g. '11.4K')",
    "titulo": "Comic title",
    "capitulos": "Total number of published chapters (integer)",
    "categoria": "Comic category/genre (e.g. Ação, Romance)",
    "thumbnail": "URL of the comic's banner/cover image",
    "comentarios": "Comment count as displayed (e.g. '4.62K')",
    "visualizacoes": "View count as displayed on the site (e.g. '4.45M', '471K')",
    "compartilhamentos": "Share count as displayed (e.g. '3.49K')",
    "classificacao_etaria": "Age rating badge text (e.g. 'A16', 'L')"
  },
  "sample": {
    "data": {
      "autor": "Glitch_Tellend",
      "likes": "99.3K",
      "salvos": "11.4K",
      "titulo": "Sense Life",
      "capitulos": 17,
      "categoria": "Ação",
      "thumbnail": "https://media.fliptru.com.br/media/comic/sense-life/bannerred.png",
      "comentarios": "4.62K",
      "visualizacoes": "4.45M",
      "compartilhamentos": "3.49K",
      "classificacao_etaria": "A16"
    },
    "status": "success"
  }
}

About the Fliptru API

Comic Detail and Engagement Data

The get_comic endpoint accepts a slug parameter (the path segment after /comic/, e.g. sense-life or lampiao) and returns a single comic's full metadata. Response fields include titulo, autor, categoria, capitulos (integer chapter count), thumbnail (cover image URL), classificacao_etaria (age rating), and four engagement counters — visualizacoes, likes, salvos, and compartilhamentos — all formatted as display strings such as 4.45M or 99.3K. The comentarios field gives the comment count in the same format.

Ranking and Listing Endpoints

Two ranking endpoints — get_most_popular_list and get_best_seller_list — return the full contents of Fliptru's respective ranking pages, including promoted and ad-slot entries. Each item in the items array carries url, position (integer rank where numbered), thumbnail, type, category, title, and classificacao_etaria. Neither endpoint accepts pagination parameters; they return everything on the page in a single call.

Four format-specific listing endpoints — get_series_list, get_completed_series_list, get_one_shot_list, and get_webtoons_list — plus get_promoted_list all accept an optional page integer parameter. Each page returns up to 12 items. When page is omitted, the default first page is returned. The position field is null on these listings since they are not ranked.

Search

The search_comics endpoint accepts a required query string (e.g. sense, naruto) and returns a deduplicated list of matching comics. Each result includes name, author, and url. Results whose URL contains /category/ are filtered out automatically, so only individual comic entries are returned. The endpoint makes one request and does not support pagination.

Reliability & maintenanceVerified

The Fliptru API is a managed, monitored endpoint for fliptru.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fliptru.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 fliptru.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
9/9 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
  • Track engagement growth for a specific comic by polling visualizacoes, likes, and salvos over time using get_comic.
  • Build a Brazilian webcomic discovery feed by pulling paginated results from get_series_list and get_webtoons_list.
  • Identify trending titles by comparing position and engagement data across get_most_popular_list and get_best_seller_list.
  • Filter content by age rating using the classificacao_etaria field returned on every listing and detail endpoint.
  • Resolve a comic slug from a user search query using search_comics before fetching full details with get_comic.
  • Aggregate completed series for a recommendation engine using get_completed_series_list with the page parameter.
  • Audit author output by searching an author's name via search_comics and cross-referencing capitulos counts from get_comic.
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 Fliptru offer an official developer API?+
Fliptru does not publish a public developer API or documented data access program as of mid-2025.
What does `get_comic` return that the listing endpoints don't?+
get_comic is the only endpoint that returns engagement counters: visualizacoes, likes, salvos, compartilhamentos, and comentarios. It also returns capitulos (chapter count) and autor. Listing endpoints return card-level data only — url, position, thumbnail, type, category, title, and classificacao_etaria — with no engagement figures.
Do the ranking endpoints include paid promotional slots?+
Yes. Both get_most_popular_list and get_best_seller_list return every item on the page, including promoted and ad-slot entries. Your code should account for these when interpreting position values or filtering results.
Can I retrieve the actual chapter pages or panel images for a comic?+
Not currently. The API covers comic-level metadata and engagement data; individual chapter content, panel images, and reading URLs are not exposed. You can fork this API on Parse and revise it to add a chapter-detail endpoint.
Is there a way to filter listing results by category or age rating directly in the API?+
The listing endpoints do not accept filter parameters — they return all items on a given page. The categoria and classificacao_etaria fields are included in each item, so filtering must be applied client-side. You can fork this API on Parse and revise it to add server-side filtering if your use case requires it.
Page content last updated . Spec covers 9 endpoints from fliptru.com.br.
Related APIs in EntertainmentSee all →
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.
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.
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.
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.
flippa.com API
Search and browse digital assets like websites, domains, and SaaS businesses listed on Flippa's marketplace, with detailed filtering by country and listing details. Access comprehensive information on thousands of digital business listings to find investment opportunities or monitor the market.
funtrivia.com API
Search and browse thousands of trivia questions and quizzes across multiple categories, with the ability to filter by topic, difficulty, or find random challenges to test your knowledge. Discover trending topics, top-rated quizzes, and the latest additions to build custom trivia games or enhance your learning experience.
anime.com API
Browse anime news, discover shows with detailed information and episode lists, and participate in community polls and discussions all from one unified service. Search across anime.com's comprehensive database to find exactly what you're looking for.
marvelsnapzone.com API
Access comprehensive data for Marvel Snap cards, variants, and locations. Retrieve card stats, abilities, energy costs, art, and location effects via structured endpoints.