Discover/Onepiece Cardgame API
live

Onepiece Cardgame APIen.onepiece-cardgame.com

Access card data, product listings, events, and news from the official One Piece Card Game site via 7 structured JSON endpoints.

Endpoint health
verified 4d ago
get_news
get_cards
get_card_series
get_card_detail
get_events
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Onepiece Cardgame API?

This API exposes 7 endpoints covering the full official One Piece Card Game data catalog — cards, sets, products, events, news, and deck recommendations. The get_cards endpoint supports multi-dimensional filtering by color, series, card category, block icon, and keyword, returning paginated results with fields like power, counter, cost, attribute, effect text, and rarity. get_card_detail lets you pull granular stats for any individual card by its ID.

Try it

No input parameters required.

api.parse.bot/scraper/d95a69ed-8e8c-4298-a782-fe16e8b84f09/<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/d95a69ed-8e8c-4298-a782-fe16e8b84f09/get_card_series' \
  -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 en-onepiece-cardgame-com-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: One Piece Card Game SDK — search cards, get details, browse events."""
from parse_apis.one_piece_card_game_official_api import (
    OnePieceCards, CardColor, CardCategory, CardNotFound
)

client = OnePieceCards()

# List available card series — single-page, cap total items fetched.
for series in client.serieses.list(limit=5):
    print(series.series_id, series.series_name)

# Search for Red Leader cards by color and category.
card = client.cards.search(
    colors=CardColor.RED, categories=CardCategory.LEADER, limit=1
).first()
if card:
    print(card.name, card.power, card.color)

# Fetch full card details by ID — typed error catch.
try:
    detail = client.cards.get(card_id="OP01-001")
    print(detail.name, detail.rarity, detail.effect)
except CardNotFound as exc:
    print(f"Card not found: {exc.card_id}")

# Browse upcoming events.
for event in client.events.list(limit=3):
    print(event.title, event.date)

# Check latest products.
for product in client.products.list(limit=3):
    print(product.name, product.release_date)

print("exercised: serieses.list / cards.search / cards.get / events.list / products.list")
All endpoints · 7 totalmissing one? ·

Retrieves all available card sets (series) with their unique IDs. Each series entry contains a numeric series_id (used as a filter value in get_cards) and a human-readable series_name. The list is ordered newest-first and includes booster packs, starter decks, promo cards, and other product cards.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "series": "array of series objects each with series_id and series_name"
  },
  "sample": {
    "data": {
      "series": [
        {
          "series_id": "569302",
          "series_name": "PREMIUM BOOSTER -ONE PIECE CARD THE BEST vol.2- [PRB-02]"
        },
        {
          "series_id": "569101",
          "series_name": "BOOSTER PACK -ROMANCE DAWN- [OP-01]"
        }
      ]
    },
    "status": "success"
  }
}

About the Onepiece Cardgame API

Card Data and Filtering

The get_cards endpoint accepts a POST request with optional filters: colors (comma-separated values such as Red, Blue, or mix), series (a series ID retrieved from get_card_series), categories (Leader, Character, Stage, or Event), block_icon (1–4), freewords for keyword search, and reprintsFlag to suppress reprint cards. Results are paginated via page and limit parameters. Each card object in the response includes id, name, rarity, category, cost, attribute, power, counter, color, block_icon, type, effect, and card (artwork reference).

Series, Products, and Deck Recommendations

get_card_series returns all available set IDs and names, which feed directly into the series filter on get_cards. get_products lists official releases — booster packs, starter decks, and accessories — with name, category, release_date, and image_url. get_recommended_decks returns officially published deck recipes with name, description, url, and image_url, sourced from the official site's strategy content.

Events and News

get_events returns upcoming and past events with title, date, category, url, and image_url. get_news provides the latest official announcements with title, date, category, and url. Both endpoints require no input parameters and reflect the current state of the official en.onepiece-cardgame.com site.

Reliability & maintenanceVerified

The Onepiece Cardgame API is a managed, monitored endpoint for en.onepiece-cardgame.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when en.onepiece-cardgame.com 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 en.onepiece-cardgame.com 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
7/7 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 card search tool that filters by color and card type using get_cards with the colors and categories parameters.
  • Populate a card database with full stats — power, counter, cost, effect text — retrieved from get_card_detail by card ID.
  • Track official product release dates for booster packs and starter decks using get_products.
  • Display upcoming tournament and event listings in a community app using get_events.
  • Surface official deck recommendations and strategies to players using get_recommended_decks.
  • Keep a news feed updated with official One Piece Card Game announcements via get_news.
  • Map every card to its series by combining get_card_series IDs with get_cards series filtering.
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 the official One Piece Card Game site have a public developer API?+
No. en.onepiece-cardgame.com does not publish a public developer API or documented data feed. This Parse API provides structured access to the same data available on the site.
How does get_card_detail differ from get_cards when looking up a specific card?+
get_card_detail takes a single card_id parameter (e.g. OP01-001) and returns the first exact match with the full detail object including effect, attribute, counter, and block_icon. get_cards is designed for filtered browsing across the full catalog and returns a paginated array, making get_card_detail the right choice when you already know the card ID.
What is the pagination behavior of get_cards, and are all filter results available at once?+
All cards matching your filter criteria are fetched in a single upstream request, and the endpoint then applies page and limit parameters to simulate pagination over those results. This means the full filtered set is available, but very broad queries (no filters, large sets) may return large payloads before pagination is applied.
Does the API expose card price or secondary market data?+
No. The API covers official card data (stats, effects, rarity, series), products, events, news, and deck recommendations sourced from en.onepiece-cardgame.com. Secondary market pricing is not part of the official site's data. You can fork this API on Parse and revise it to add an endpoint pulling from a card marketplace or pricing source.
Is card artwork or full image data returned by the API?+
The card field in card detail responses contains a reference to card artwork, and get_products, get_events, and get_recommended_decks each include an image_url field. However, the card listing in get_cards does not currently include a per-card image URL at the list level. You can fork this API on Parse and revise the response mapping to surface image URLs in card list results.
Page content last updated . Spec covers 7 endpoints from en.onepiece-cardgame.com.
Related APIs in EntertainmentSee all →
onepiece.gg API
Access One Piece Trading Card Game deck lists and card statistics to discover popular competitive strategies and build optimized decks. Search through detailed deck information to compare card choices and improve your gameplay.
ygoprodeck.com API
Search and retrieve detailed Yu-Gi-Oh! card information including attributes, effects, and images from the comprehensive YGOProDeck database. Browse the complete card catalog or look up specific cards to find everything you need about their stats and abilities.
snkrdunk.com API
Access data from snkrdunk.com.
pkmncards.com API
Search and browse Pokémon trading card game cards with detailed metadata, high-quality images, and advanced filtering by set, Pokémon name, or card type. Filter across thousands of cards from different sets to find exactly what you're looking for.
cardmarket.com API
Search and browse trading cards across Europe's largest marketplace, accessing detailed card information, listings, seller profiles, and finding the best bargains all in one place. Explore games and expansions to discover available singles and compare prices from multiple sellers.
grandarchive.com API
Access official Grand Archive TCG news, articles, and comprehensive card database to stay updated on the latest announcements, ban & restricted updates, and guides. Search cards, browse champions, and retrieve detailed card metadata all in one place.
pokemontcg.io API
Search and retrieve detailed information about Pokémon Trading Card Game cards, including card stats, types, attacks, abilities, rarity, set information, images, and pricing data.
tcgplayer.com API
Search for trading cards across all games and sets on TCGPlayer, and instantly access detailed pricing information by condition plus current seller listings with prices, shipping costs, and seller ratings. Compare card values and find the best deals from multiple sellers all in one place.