/v1/meta
Service description & endpoints
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/sefaria-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sefaria-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sefaria-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/sefaria-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "sefaria-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/name": "Resolve a reference or name (name=).",
"GET /v1/text": "A passage in Hebrew & English (ref=, e.g. 'Genesis 1:1').",
"GET /v1/index": "The library table of contents.",
"GET /v1/links": "Commentaries & connections on a passage (ref=).",
"GET /v1/topics": "Topics list, or one topic (slug=).",
"GET /v1/calendars": "Today's daily-learning calendar."
},
"description": "Jewish texts via the Sefaria library: fetch any passage in Hebrew and English (Torah, Talmud, Mishnah, commentaries), resolve a reference or name, browse the table of contents, pull the commentaries and connections on a passage, the daily-learning calendar (Parashat Hashavua, Daf Yomi and more) and topics. Real data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:19:33.350Z",
"request_id": "d241cfbd-2f25-4fe7-87b5-567b572932d2"
},
"status": "ok",
"message": "Meta",
"success": true
}