So we said that if we want to get data from a particular external service, then we need to know what location that data is stored. It's usually just a URL.

This API request is kind of similar to going to the bank and trying to get some money out, so trying to withdraw some data from their vault.

import requests

response = requests.get(url="<http://api.open-notify.org/iss-now.json>")
print(response)

-------------------

<Response [200]>