probe-gate
Demonstrates fetching Earth from Dimension C-137, the primary setting of the show.
curl 'https://rickandmortyapi.com/api/location/1'
import requests
resp = requests.get("https://rickandmortyapi.com/api/location/1")
data = resp.json()
import zingu_apis
api = zingu_apis.api("rickandmortyapi")
result = api.fetch("location/{id}")
for item in result:
print(item)
const resp = await fetch("https://rickandmortyapi.com/api/location/1");
const data = await resp.json();