Nexvyra

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

PfadFormatInhalt
/api/topics.jsonJSONIndex aller Themen
/api/facts.jsonJSONAlle Fakten (Wert + Quelle + Autorität) für RAG
/fakten/{slug}.jsonJSONEin Thema, strukturiert
/fakten/{slug}.mdMarkdownEin Thema als Volltext
/api/changelog.jsonJSONÄnderungs-Historie
/api/search-index.jsonJSONIndex für die Suche
/.well-known/ai-plugin.jsonJSONManifest für KI-Agenten
/llms.txt & /llms-full.txtTextStandard 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'])