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
- Host: GitHub
- URL: https://github.com/nicho92/mtgstock-api-java
- Owner: nicho92
- Created: 2020-10-14T12:25:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T19:02:12.000Z (over 1 year ago)
- Last Synced: 2025-07-03T21:52:53.136Z (11 months ago)
- Topics: api, mtg, mtg-api, mtg-cards, mtgstock, price-tracker
- Language: Java
- Homepage:
- Size: 1.05 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```