/v1/meta
Service description & endpoints
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}