Discover/OmegaScans API
live

OmegaScans APIomegascans.org

Access OmegaScans series listings, chapter content, search, and announcements via 9 structured endpoints. Filter by status, sort order, and pagination.

Endpoint health
verified 4d ago
get_latest_updates
list_novels
get_homepage
list_comics
get_series
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the OmegaScans API?

The OmegaScans API exposes 9 endpoints covering manga and novel series data from omegascans.org, including series metadata, paginated chapter lists, reader content, and sitewide announcements. The get_chapter endpoint returns image URLs and next/previous navigation links for a specific chapter, while search_series lets you query titles by keyword and get back slug identifiers you can pass to downstream endpoints.

Try it

No input parameters required.

api.parse.bot/scraper/893c251c-0fa4-4f52-ae4d-31f3b7584a25/<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/893c251c-0fa4-4f52-ae4d-31f3b7584a25/get_homepage' \
  -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 omegascans-org-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.

from parse_apis.omegascans_api import OmegaScans, Status, SortField, SortDirection

client = OmegaScans()

# Search for comics by keyword
results = client.serieses.search(query="money")
for series in results:
    print(series.title, series.series_slug, series.status)

# List ongoing comics sorted by update date
comics = client.serieses.list_comics(
    order_by=SortField.UPDATED_AT,
    order=SortDirection.DESC,
    status=Status.ONGOING,
    limit=5,
)
for comic in comics:
    full = comic.details()
    print(full.title, full.author, full.studio, full.rating)

# Get chapters for a specific series
series = client.serieses.get(series_slug="money-games")
for chapter in series.chapters(limit=3):
    print(chapter.chapter_name, chapter.chapter_slug, chapter.price)

# Read a specific chapter's content via sub-resource
detail = series.chapter.get(chapter_slug="chapter-1")
print(detail.chapter_name, detail.views, len(detail.images))

# List announcements
for ann in client.announcements.list():
    print(ann.title, ann.slug, ann.created_at)
All endpoints · 9 totalmissing one? ·

Returns homepage content including trending series (weekly), sitewide announcements, and the latest comic updates sorted by update date. Trending items include bookmark counts and chapter counts. Announcements include title, slug, and creation date. Latest updates include full series objects with their recent free and paid chapters.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "trending": "array of trending series objects with id, title, series_slug, thumbnail, status, and meta (chapters_count, who_bookmarked_count)",
    "announcements": "array of announcement objects with id, title, slug, and created_at",
    "latest_updates": "array of recently updated comic series objects with chapters and metadata"
  },
  "sample": {
    "data": {
      "trending": [
        {
          "id": 689,
          "meta": {
            "chapters_count": "98",
            "who_bookmarked_count": "4309"
          },
          "title": "Wireless Onahole",
          "status": "Ongoing",
          "thumbnail": "https://media.omegascans.org/file/zFSsXt/c2pkxyutdjkr2uzvdekasv4f.webp",
          "series_slug": "wireless-onahole"
        }
      ],
      "announcements": [
        {
          "id": 26,
          "slug": "new-discord-server",
          "title": "New Discord Server",
          "created_at": "2025-08-05T15:43:07.159+00:00"
        }
      ],
      "latest_updates": [
        {
          "id": 779,
          "meta": {
            "chapters_count": "7"
          },
          "title": "Love Cheer!",
          "status": "Ongoing",
          "thumbnail": "https://media.omegascans.org/file/zFSsXt/urybkwv7g0ih7t8fak7b4vm5.webp",
          "series_slug": "love-cheer",
          "series_type": "Comic",
          "free_chapters": [
            {
              "id": 13593,
              "series_id": 779,
              "created_at": "2026-06-09T15:18:32.924+00:00",
              "chapter_name": "Chapter 7",
              "chapter_slug": "chapter-7"
            }
          ],
          "paid_chapters": []
        }
      ]
    },
    "status": "success"
  }
}

About the OmegaScans API

Series Discovery and Filtering

The list_comics and list_novels endpoints return paginated series arrays, each with id, title, series_slug, thumbnail, status, and associated chapters. Both accept status filters (Ongoing, Hiatus, Dropped, Completed, or All), a sort field via order_by (created_at, updated_at, or title), and order (asc or desc). The meta object in every response includes total, current_page, last_page, and page URLs for cursor-style navigation.

Series Detail and Chapters

get_series takes a series slug and returns the full metadata record: author, studio, description (HTML string), tags array, rating, status, and a meta object with chapters_count and who_bookmarked_count. To enumerate chapters, pass the numeric series_id (from get_series or search_series) to get_series_chapters, which returns chapters ordered newest-first with chapter_name, chapter_slug, chapter_thumbnail, price, and created_at. Chapters marked with a non-zero price field are paywalled on the source site.

Chapter Reader Content

get_chapter takes both a series_slug and a chapter_slug and returns the chapter object containing chapter_data.images (an array of image URLs), views, and price, plus next_chapter and previous_chapter navigation objects (or null at series boundaries). This is the only endpoint that exposes actual page-image URLs.

Homepage and Announcements

get_homepage bundles trending series (with bookmark counts), announcements, and latest updates in a single call — useful for building a dashboard or monitoring what's currently active. get_announcements returns 3 announcement objects per page (server-enforced), each with id, title, slug, and created_at. get_latest_updates provides the full paginated feed of recently updated series with separate free_chapters and paid_chapters arrays.

Reliability & maintenanceVerified

The OmegaScans API is a managed, monitored endpoint for omegascans.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when omegascans.org 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 omegascans.org 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
4d 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
  • Build a reading tracker that monitors get_latest_updates for new chapters on followed series slugs.
  • Index all OmegaScans manga titles and statuses using list_comics with status=Completed for archive purposes.
  • Implement a title search feature using search_series and resolve full metadata with get_series for matched slugs.
  • Render a chapter reader by fetching chapter_data.images from get_chapter and wiring the next_chapter/previous_chapter navigation fields.
  • Track bookmark popularity trends by comparing who_bookmarked_count from get_series across periodic calls.
  • Aggregate OmegaScans announcements into a notification feed using get_announcements with created_at timestamps.
  • Distinguish free vs. paid chapter availability using the price field in get_series_chapters responses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does OmegaScans have an official developer API?+
OmegaScans does not publish a documented public developer API. This API provides structured access to the same content available on omegascans.org.
Can I retrieve the actual page images for a chapter?+
Yes. The get_chapter endpoint returns a chapter_data.images array containing the image URLs for that chapter. You need both the series_slug and the chapter_slug (obtainable from get_series_chapters) to make the request. Note that chapters with a non-zero price field are paywalled on the source site, and their image content may not be accessible.
How does search pagination work in `search_series`?+
search_series returns up to 12 results per page and includes a meta object with total, current_page, and last_page. The only required input is a query string; there are no additional filters for status or series type in this endpoint.
Does the API expose user accounts, reading history, or personal bookmarks?+
No user account data is exposed. The API covers public series metadata, chapter content, search, and announcements. Bookmark counts appear as aggregate figures in get_series (the who_bookmarked_count field), but individual user reading history and personal lists are not included. You can fork this API on Parse and revise it to add any missing endpoint if that data becomes publicly accessible.
Is there a way to filter series by genre or tag?+
The list_comics and list_novels endpoints currently filter by status and sort by created_at, updated_at, or title. Tag data is returned per-series in the tags array from get_series, but tag-based filtering is not a parameter on the list endpoints. You can fork this API on Parse and revise it to add tag filtering if needed.
Page content last updated . Spec covers 9 endpoints from omegascans.org.
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.
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.
aniwatchtv.to API
Extract all
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.
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.
mangafire.to API
Browse and search manga titles by genre, type, and status, then get detailed information about specific series including today's latest updates. Sort and filter manga listings to discover new reads tailored to your preferences.
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.
en.onepiece-cardgame.com API
Search and explore One Piece trading card data across all series, view detailed card information including stats, abilities, and artwork, and stay up to date with the latest news, events, and product releases from the official game site. Browse recommended deck strategies and discover upcoming tournaments and expansions.