Generate random booster packs for trading card games. Free, open, no authentication required.
https://open.randombooster.de
List all supported games.
List all available sets for a game.
Get detailed information about a specific set (release date, size, available products).
Generate random booster packs. Returns a box with n boosters (default 3, max configurable).
Look up image URLs for Magic cards by Scryfall ID. Body: {"scryfallIds": ["uuid", ...]} (max 500).
GET /v1/games
Response:
[
{"name": "Magic: The Gathering", "key": "magic"},
{"name": "Pokémon", "key": "pokemon"},
...
]
GET /v1/games/magic/sets
Response:
[
{"code": "woe", "name": "Wilds of Eldraine", "products": ["play", "draft", "collector"]},
...
]
GET /v1/games/magic/sets/woe/products/draft?amount=2
Response:
{
"game": {"name": "Magic: The Gathering"},
"set": {"name": "Wilds of Eldraine", "kind": "expansion"},
"box": {
"uuid": "...",
"productionDate": "2026-05-19",
"content": [
{
"uuid": "...",
"kind": "draft",
"cards": [
{"id": 1, "uuid": "...", "name": "...", "imageUrl": "...", "rarity": "common", "foil": false},
...
]
},
...
]
}
}
/v1/games endpoint to discover available game keys.