openapi-spec
curl 'https://api.census.gov/data/2023/popestimates'
import requests
resp = requests.get("https://api.census.gov/data/2023/popestimates")
data = resp.json()
import zingu_apis
api = zingu_apis.api("census")
result = api.fetch("{year}/popestimates")
for item in result:
print(item)
const resp = await fetch("https://api.census.gov/data/2023/popestimates");
const data = await resp.json();