Discover/Tapas API
live

Tapas APItapas.io

Retrieve Tapas.io series details, episode lists, and search results. Access titles, stats, author info, cover images, and synopses via 3 endpoints.

This API takes change requests — .
Endpoint health
verified 3h ago
get_item_episodes
get_item_info
search_items
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the Tapas API?

The Tapas.io API gives developers structured access to comics and novels on Tapas.io through 3 endpoints. The get_item_info endpoint returns 10 fields per series including view count, subscriber count, like count, author name, category, synopsis, and cover image. You can also paginate through episode lists or search across the full Tapas catalog with optional type filtering.

This call costs1 credit / call— charged only on success
Try it
The URL slug of the series on Tapas (the part after /series/ in the URL). For example, 'my-werewolf-system-novel' or 'tbate-comic'.
api.parse.bot/scraper/1825258a-99dc-4839-b2d2-e104c4999be4/<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/1825258a-99dc-4839-b2d2-e104c4999be4/get_item_info?series_slug=my-werewolf-system-novel' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Retrieve detailed information about a Tapas series (comic or novel) given its URL slug. Returns the page URL, title, poster image, cover image, category/genre, series type (Novel or Comic), view count, subscriber count, like count, chapter/episode count, author name, and synopsis. Makes one HTTP request to the series info page.

Input
ParamTypeDescription
series_slugrequiredstringThe URL slug of the series on Tapas (the part after /series/ in the URL). For example, 'my-werewolf-system-novel' or 'tbate-comic'.
Response
{
  "type": "object",
  "fields": {
    "likes": "Total like count as integer",
    "title": "Title of the series",
    "views": "Total view count as integer",
    "author": "Name of the series creator/author",
    "category": "Genre or category of the series (e.g. 'Action Fantasy', 'Romance')",
    "page_url": "Full URL of the series info page",
    "synopsis": "Full text synopsis/description of the series",
    "cover_image": "URL of the series cover/banner image",
    "series_type": "Type of series: 'Novel' or 'Comic'",
    "subscribers": "Total subscriber count as integer",
    "poster_image": "URL of the series poster/thumbnail image",
    "chapter_count": "Total number of chapters/episodes as integer"
  },
  "sample": {
    "data": {
      "likes": 1908,
      "title": "My Werewolf System",
      "views": 48337,
      "author": "JKSManga",
      "category": "Action Fantasy",
      "page_url": "https://tapas.io/series/my-werewolf-system-novel/info",
      "synopsis": "To make ends meet, Gary becomes an errand for the savage Underdogs gang...",
      "cover_image": "https://us-a.tapas.io/sa/07/db021f3a-a3a7-464d-b73f-1284b2cc679f.jpg",
      "series_type": "Novel",
      "subscribers": 974,
      "poster_image": "https://us-a.tapas.io/sa/28/6d8ae034-ca17-4f65-9ea5-b4b37597d746_z.jpg",
      "chapter_count": 590
    },
    "status": "success"
  }
}

About the Tapas API

Series Info

The get_item_info endpoint accepts a series_slug — the path segment after /series/ in any Tapas URL — and returns a fixed set of fields: title, author, category, series_type (either 'Novel' or 'Comic'), synopsis, cover_image, poster_image, page_url, and three engagement counters: views, subscribers, and likes. This is useful for building catalog pages, recommendation feeds, or monitoring reader traction on a specific title.

Episode Listings

get_item_episodes takes the same series_slug plus an optional page integer. Each page returns up to 20 episode objects containing episode_number, title, release_date, views, cover_image, and page_url. The response also includes total_episodes and a has_next boolean so you can walk the full episode history programmatically without guessing the page ceiling.

Search

search_items accepts a query string and two optional parameters: page_number for pagination and type_filter to restrict results to one of COMICS, NOVELS, PEOPLE, or TAG. Each result includes page_url, cover_image, title, author, synopsis, and tags. Up to 10 results are returned per page. Omitting type_filter searches across all content types simultaneously.

Reliability & maintenanceVerified

The Tapas API is a managed, monitored endpoint for tapas.io — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tapas.io 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 tapas.io 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
3h ago
Latest check
3/3 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 Tapas series discovery feed using search_items with type_filter=NOVELS or COMICS
  • Track engagement trends over time by polling views, subscribers, and likes from get_item_info
  • Generate a full episode changelog for a series by paginating through get_item_episodes using the has_next flag
  • Populate a comics or novel database with author names, categories, and synopses from get_item_info
  • Find series that match specific tags using search_items with type_filter=TAG
  • Build release-date timelines for a series by extracting release_date from paginated episode results
  • Compare reader traction across similar series by pulling views and subscribers for multiple slugs
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 Tapas.io have an official developer API?+
Tapas.io does not publish a public developer API or official API documentation as of mid-2025.
What does `get_item_episodes` return and how does pagination work?+
It returns an array of episode objects per page (up to 20), each with episode_number, title, release_date, views, cover_image, and page_url. The has_next boolean tells you whether another page exists, and total_episodes gives the full count. Increment the page parameter to walk forward through the list.
Does the API return individual chapter/episode content or reader comments?+
No. The API covers series-level metadata (via get_item_info), episode listings with view counts and release dates (via get_item_episodes), and search results. Chapter text, panels, and reader comments are not included. You can fork this API on Parse and revise it to add an endpoint targeting episode content.
Can I filter search results by genre or category?+
The type_filter parameter on search_items accepts COMICS, NOVELS, PEOPLE, or TAG — it filters by content type, not by genre. Genre or category filtering is not currently supported. You can fork this API on Parse and revise it to add genre-based filtering against the category field returned by get_item_info.
Is data returned for locked or premium episodes?+
Episode listing metadata such as title, episode number, and release date is returned for all episodes including locked ones. Actual content behind a paywall is not exposed. Engagement metrics like views on locked episodes reflect what the source site reports publicly.
Page content last updated . Spec covers 3 endpoints from tapas.io.
Related APIs in EntertainmentSee all →
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.
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.
thetvdb.com API
Search and discover TV shows from TheTVDB's database, view trending series, and access detailed episode information. Browse complete show listings or find specific titles to retrieve comprehensive data about seasons, episodes, and air dates.
mangalib.org API
Browse and search a comprehensive manga catalog, read chapters and pages, view manga details and cover images, and discover personalized recommendations. Access comments, track your currently reading list, and find random titles to explore.
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.
ranobes.top API
Access novel chapter listings and read full chapter text from ranobes.top to stay updated on your favorite stories. Browse through available chapters and retrieve complete content for any novel in the database.
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.
wikia.org API
Search and retrieve detailed information about characters, episodes, lore, and other content from Fandom wikis across thousands of fan communities. Browse wiki categories, look up specific pages, and access structured data about your favorite franchises all in one place.