Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 670 Bytes

File metadata and controls

39 lines (20 loc) · 670 Bytes

mtgstock-api-java

Java api for MTGStocks

Import via maven :

	<dependency>
	  <groupId>com.github.nicho92</groupId>
	  <artifactId>mtgstock-api-java</artifactId>
	  <version>0.1.9</version>
	</dependency>

Import via Gradle :

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

Usage :

			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();