Just a heads up. This API is consumption only! You can't just submit cards directly into our database! You can only use GET requests on this API.
Also, please try not to do an insane amount of API calls each day!
The API doesn't require authentication, and it is open for anyone to use.
However, the API is run by me on my VPS that I pay for monthly, so please try not to hurt my wallet too much.
Before you get into using our API heavily, You are going to need some way or somewhere in which you can send HTTP requests and receive JSON data.
There are many options for how you can send HTTP requests and receive a response.
Here are a few examples:
I personally recommend testing the API out using the Python requests and json library before trying it elsewhere, but that is just my suggestion.
Once you have a place in which you can make web requests to the OPTCG API!
For this portion, I will be using Python and the requests library to show how you can access the API. I use PyCharm as my IDE, but there are a few out there that work just as good.
First, open up whatever Python IDE you use, and use the following line of code in your terminal to install the requests library to the environment.
pip install requests
Once you have the requests library installed on your environment, create a new python file to work in.
After you create a new python file to work in, make sure to import the requests library so that you can then use it:
import requests
With the requests library installed and imported in the python file, you can then begin making web requests by using the .get function.
Here is an example of us using the .get function on the /sets/{set_id}/ endpoint:
import requests
response = requests.get('https://optcgapi.com/api/sets/card/OP01-001/')
response_text = response.json()
Now, you will have a python dictionary equivalent of the JSON data received in the web response!
You can do what you want with the data from here!
Here is how the JSON will look when you call the api/sets/card/{card_id}/ endpoint: (We are passing in the card_id: OP01-001)