curl 'https://groandeck.com/api/v1/jokes/f115f9c3-e03c-41fa-aa49-ef4d9abff6bd'
import requests
resp = requests.get("https://groandeck.com/api/v1/jokes/f115f9c3-e03c-41fa-aa49-ef4d9abff6bd")
data = resp.json()
import zingu_apis
api = zingu_apis.api("groandeck")
result = api.fetch("jokes/{id}")
for item in result:
print(item)
const resp = await fetch("https://groandeck.com/api/v1/jokes/f115f9c3-e03c-41fa-aa49-ef4d9abff6bd");
const data = await resp.json();