Java SDK for using the magicthegathering.io APIs.
Note that API use is free and does not require authentication or registration, but some rate limits apply. Read the official API website for more information.
Add the dependency to your project and you're good to go!
- Java JDK 7 or higher
<dependency>
<groupId>io.magicthegathering</groupId>
<artifactId>javasdk</artifactId>
<version>0.0.6</version>
</dependency>
compile 'io.magicthegathering:javasdk:0.0.6'
<dependency org="io.magicthegathering" name="javasdk" rev="0.0.6"/>
int multiverseId = 1;
Card card = CardAPI.getCard(multiverseId);
List<Card> cards = CardAPI.getAllCards();
String setCode = "KLD";
MtgSet set = SetAPI.getSet(setCode);
List<MtgSet> sets = SetAPI.getAllSets();
String setCode = "KLD";
List<Card> booster = SetAPI.getBooster(setCode);
This project is licensed under MIT license.