probe-gate
Fetches the latest Arazzo Workflow Specification for defining API call sequences
curl 'https://spec.openapis.org/arazzo/latest.html'
import requests
resp = requests.get("https://spec.openapis.org/arazzo/latest.html")
data = resp.json()
import zingu_apis
api = zingu_apis.api("openapis")
result = api.fetch("arazzo/latest.html")
for item in result:
print(item)
const resp = await fetch("https://spec.openapis.org/arazzo/latest.html");
const data = await resp.json();