Last updated:
0 purchases
scryfall api
A wrapper of the Scryfall API for the Dart programming language.
Features #
Query all information about Magic: The Gathering
which is provided by the Scryfall API:
Sets
Cards
Rulings
Card Symbols
Catalogs
Bulk Data
Card Migrations
Usage #
Initialize the ScryfallApiClient:
final apiClient = ScryfallApiClient();
copied to clipboard
Retrieve the Adventures in the Forgotten Realms set by its unique code (afr):
// [GET] https://api.scryfall.com/sets/afr
final afrSet = await apiClient.getSetByCode('afr');
afrSet.name // -> 'Adventures in the Forgotten Realms'
// Close API Client when it's not used anymore.
apiClient.close();
copied to clipboard
Retrieve the Black Lotus card by its id on Scryfall:
// [GET] https://api.scryfall.com/cards/bd8fa327-dd41-4737-8f19-2cf5eb1f7cdd
final blackLotus = await apiClient.getCardById('bd8fa327-dd41-4737-8f19-2cf5eb1f7cdd');
blackLotus.name // -> 'Black Lotus'
blackLotus.oracleText // -> '{T}, Sacrifice Black Lotus: Add three mana of any one color.'
// Close API Client when it's not used anymore.
apiClient.close();
copied to clipboard
Retrieve all spell types from Scryfall:
// [GET] https://api.scryfall.com/catalog/spell-types
final spellTypes = await apiClient.getSpellTypes();
spellTypes.length // -> 4
spellTypes.data // -> [Adventure, Arcane, Lesson, Trap]
copied to clipboard
Features and bugs #
If you encounter a bug or want to file a feature request, feel free to
open a new issue or
create a pull request.
Additional information #
The Scryfall API package is
unofficial Fan Content permitted under the Fan Content Policy. Not
approved/endorsed by Wizards. Portions of the materials used are property
of Wizards of the Coast. © Wizards of the Coast LLC.
All the information, literal and graphical, obtained from the Scryfall API which is not © Wizards of the Coast LLC is © Scryfall LLC.
The remaining part of this package is subject to its associated license.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.