openapi-spec
curl 'https://groandeck.com/api/v1/random?category=food'
import requests
resp = requests.get(
"https://groandeck.com/api/v1/random",
params={
'category': 'food',
},
)
data = resp.json()
import zingu_apis
api = zingu_apis.api("groandeck")
result = api.fetch("random", category="food")
for item in result:
print(item)
const resp = await fetch("https://groandeck.com/api/v1/random?category=food");
const data = await resp.json();