An open API service indexing awesome lists of open source software.

https://github.com/nicho92/mtgstock-api-java

java api for mtgstock
https://github.com/nicho92/mtgstock-api-java

api mtg mtg-api mtg-cards mtgstock price-tracker

Last synced: 5 months ago
JSON representation

java api for mtgstock

Awesome Lists containing this project

README

          

# mtgstock-api-java
Java api for MTGStocks


Import via maven :


com.github.nicho92
mtgstock-api-java
0.1.9

Import via Gradle :

implementation 'com.github.nicho92:mtgstock-api-java:0.1.7'



Usage :

```java
CardsService cardsService = new CardsService();
cardsService.search("Liliana of the veil");


PriceService pService = new PriceService();
pService.getPricesFor(55799);


InterestsService iService = new InterestsService();
iService.getMarketFoil();
iService.getAverage();

```