Entwickler-Dokumentation — Nexvyra API
Was Sie hier bekommen
Nur-Lese-HTTPS-API unter https://nexvyra.de mit JSON- und Markdown-Daten direkt aus der Datenbank. Kein API-Schlüssel, kein Konto, keine Limits außer dem normalen Server-Limit. Lizenz CC BY 4.0.
Endpunkte
| Pfad | Format | Inhalt |
|---|---|---|
/api/topics.json | JSON | Index aller Themen |
/api/facts.json | JSON | Alle Fakten (Wert + Quelle + Autorität) für RAG |
/fakten/{slug}.json | JSON | Ein Thema, strukturiert |
/fakten/{slug}.md | Markdown | Ein Thema als Volltext |
/api/changelog.json | JSON | Änderungs-Historie |
/api/search-index.json | JSON | Index für die Suche |
/.well-known/ai-plugin.json | JSON | Manifest für KI-Agenten |
/llms.txt & /llms-full.txt | Text | Standard llmstxt.org |
Beispiel — alle Themen abrufen
curl -s https://nexvyra.de/api/topics.json
// JavaScript
const res = await fetch('https://nexvyra.de/api/topics.json');
const data = await res.json();
for (const t of data.topics) console.log(t.slug, '—', t.titre);
# Python
import requests
data = requests.get('https://nexvyra.de/api/topics.json').json()
for t in data['topics']:
print(t['slug'], '—', t['titre'])