Vollständige Metadaten aller Fünf Freunde-Serienfolgen — Inhalte, Cover und Produktionsinfos
| # | Titel | Jahr | Kap. | |
|---|---|---|---|---|
|
Lade Folgen …
|
||||
const { serie } = await fetch('Serie.json')
.then(r => r.json());
// Alle Folgen eines Jahres
const folgen = serie.filter(
f => f.veröffentlichungsjahr === 1982
);
import httpx
data = httpx.get(
"https://<host>/Serie.json"
).json()
for f in data["serie"]:
print(f["nummer"], f["titel"])
curl -s https://<host>/Serie.json \
| jq '.serie[] |
select(.veröffentlichungsjahr==1982) |
.titel'
Vollständige Dokumentation: api.html