Complete catalog
Cards, sets, expansions, formats, and printings in one consistent structure.
One Piece Card Game REST API
More than 1,800 cards, sets, leaders, and decks, all accessible through documented endpoints and fast JSON. Try it now with a free key.
$ curl -H "X-API-Key: sl_live_*****" \
https://api.sealedger.cards/v1/cards?name=Luffy
200 OK
{
"cards": [
{
"id": "OP01-001",
"name": "Monkey D. Luffy",
"type": "Leader",
"cost": 4
}
]
}For developers
Go from an idea to your first endpoint in minutes with normalized, documented data.
Cards, sets, expansions, formats, and printings in one consistent structure.
Response headers always show how many requests your integration has left.
Receive events when new printings, sets, and errata are released.
Documentation
// List all cards in a set
GET /v1/cards?set=OP06&page=1&perPage=20
HEADERS
X-API-Key: slk_••••••••
RESPONSE 200
{
"data": [...],
"meta": { "page": 1 }
}List cards with filters for name, set, type, color, and rarity.
/v1/cardsComplete details for one card and its localized effect.
/v1/cards/:idReleased sets, release dates, and card totals.
/v1/setsCheck whether a deck follows the format rules.
/v1/decks/validatePricing
For personal apps and prototypes.
For production apps and active bots.
For platforms and high volumes.
FAQ
Yes. The Starter plan includes 100 requests per day, with no credit card required.
Cards are available in English, Japanese, and French, with localized text and images.
The API returns 429 Too Many Requests and a Retry-After header indicating when to retry.
Generate an API key and start building for the One Piece Card Game.
Dashboard