API to get Digimon Card Info?

You must be logged in if you wish to post to the forum.

OPbeefpine 2 years ago
#1

Hello. I was curious if there was already an API exposed that allows queries to GET digimon card information (effect, cost, color, card image, etc.) programatically.

 

 

Genesis 2 years ago
#2

We currently don't have our API exposed to the public. Are you interested? If so what would you like the data for? I need to set up a couple of things before I can expose the data on a publicly facing API but so far the demand for one has been low. 

OPbeefpine 2 years ago
#3

Ya i was just tinkering around with a side project of creating a virtual digimon card game platform to test out decks and didnt want to have to create the card data myself. I think even just having a means to export all the data to csv or something would be helpful.

#4

I am also interested, I would like to start a project to make a marketplace for my country, since we do not have any means to sell and buy cards .

Nabe 2 years ago
#5

I want that API too. Want to create a tool to store my owned cards, decks, and show what cards I'm missing or which decks I can build with the cards I got :D

Genesis 2 years ago
#6

Hi guys,

I have an early version of the API now available publicly. It can be found here:

https://documenter.getpostman.com/view/14059948/TzecB4fH

 

OPbeefpine 2 years ago
#7

Thanks!

JGGT89 2 years ago
#8

The API works great for quick fetches, buth a more ellaborate GET function could be helpful.

I'm trying to build a personal database and I am scouring the web for this info. Something that could include market price data in the card info would also be lovely. 

VioletTamer 2 years ago
#9

Hello. I just tried out the API is it's pretty much a Godsend when putting together a personal database quickly.

The only weird thing I'm finding is that when looking up card rarity it may sometimes say "Alternative Art" instead of the actual card rarity. For example getting data on Agumon black from starter deck 5, instead of getting a card rarity of "uncommon" it responds with "Alternate art". It would be nice if it could reference both to differentiate which card is which in an array (Like cardrarity:["Uncommon", "Alternate Art"]) like how you have a list of card sets you can find this specific card or note which pack the alt art came from.

Genesis 2 years ago
#10

I can look into that for you VioletTamer! I'll see what I can do. 

Coombes 2 years ago
#11

Hey I stumbled upon this while looking into the same thing myself this weekend and went ahead and made my own if that's of any interest to yourself, I'm more than happy to help out etc.

It's using GraphQL and you can find it here for now: Playground - https://api.mikecoombes.uk/ 

It handles pagination as well as searching so an example query could be:

```query {

  cards (

    limit: 5

    offset: 0

    search: {

      name: "Greymon"

      color: "Black"

    }

  ){

    Cards {

      name

      color

      dp

      maineffect

      image_url

    }

    Pagination {

      hasNextPage

      hasPrevPage

      page

      pages

      totalCount

    }

  }

}```

It's still very much early days so the search currently only does full matches, as I said I only threw this together today, but it might be of interest I suppose!

 

Shawak 1 year ago
#12

I threw this together yesterday, also parsing digivolve information: https://github.com/Shawak/digidata

 

Nothing special, if anyone/Genesis is interested to use my parsing tool to create an api/get future data contact me on Discord Shawak#2625

Last Edited: 1 year ago
gruntlord6 9 months ago
#13

Genesis:

Hi guys,

I have an early version of the API now available publicly. It can be found here:

https://documenter.getpostman.com/view/14059948/TzecB4fH

 

Is there a chance price data can be added?