Look up Riftbound cards by identifier
piltover_get_cardsResolve Riftbound cards by collector number, exact name, or UUID in one request. Use it to turn deck card IDs into real names or batch-lookup cards.
Instructions
Resolve known Riftbound cards in one request, by collector number, exact name, or UUID.
Provide at least one of variantNumbers, names or ids; they can be combined.
This is the right tool for turning the cardId/variantId values inside a deck
into real card names, and for looking up a list of cards without one search per card.
Args:
variantNumbers: collector numbers, e.g. ["OGN-007"]
names: exact card names, e.g. ["Vi, Destructive"]
ids: card or variant UUIDs
response_format: 'markdown' (default) or 'json'
Examples:
"What is OGN-007?" -> { variantNumbers: ["OGN-007"] }
Resolving a decklist -> { ids: ["0283d70f-…", "f40b0e74-…"] }
Don't use when: you are searching by criteria rather than identity — use piltover_search_cards.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Card or variant UUIDs, as returned in deck contents. | |
| names | No | Exact card names, e.g. ["Vi, Destructive"]. | |
| variantNumbers | No | Collector numbers, e.g. ["OGN-007", "ARC-001"]. | |
| response_format | No | markdown for reading, json for further processing. | markdown |