Accessing APIs
I have noticed an increase in questions where you are required to access an API. The following is a quick primer on how API access works in Python
This section focuses on accessing APIs in Python, if you are not using Python, please refer to the respective documentation for your language to learn how to access APIs
To make an API request, use the requests
library, which you need to import first:
Then, to make a GET
request, use requests.get(URL)
. This returns a Response
object that you can use to extract information from the API:
To upload data via a POST
request, use requests.post(URL, json=JSON)
Last updated