/v1/index
The library table of contents
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/index" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sefaria-api/v1/index", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sefaria-api/v1/index");
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/index",
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": {
"count": 14,
"table_of_contents": [
{
"title": "Tanakh",
"category": "Tanakh",
"contents": [
{
"title": "Torah",
"category": "Torah",
"heCategory": "תורה"
},
{
"title": "Prophets",
"category": "Prophets",
"heCategory": "נביאים"
},
{
"title": "Writings",
"category": "Writings",
"heCategory": "כתובים"
},
{
"title": "Targum",
"category": "Targum",
"heCategory": "תרגומים"
},
{
"title": "Rishonim on Tanakh",
"category": "Rishonim on Tanakh",
"heCategory": "ראשונים על התנ״ך"
},
{
"title": "Acharonim on Tanakh",
"category": "Acharonim on Tanakh",
"heCategory": "אחרונים על התנ״ך"
},
{
"title": "Modern Commentary on Tanakh",
"category": "Modern Commentary on Tanakh",
"heCategory": "פירושים מודרניים על התנ״ך"
}
],
"heCategory": "תנ\"ך"
},
{
"title": "Mishnah",
"category": "Mishnah",
"contents": [
{
"title": "Seder Zeraim",
"category": "Seder Zeraim",
"heCategory": "סדר זרעים"
},
{
"title": "Seder Moed",
"category": "Seder Moed",
"heCategory": "סדר מועד"
},
{
"title": "Seder Nashim",
"category": "Seder Nashim",
"heCategory": "סדר נשים"
},
{
"title": "Seder Nezikin",
"category": "Seder Nezikin",
"heCategory": "סדר נזיקין"
},
{
"title": "Seder Kodashim",
"category": "Seder Kodashim",
"heCategory": "סדר קדשים"
},
{
"title": "Seder Tahorot",
"category": "Seder Tahorot",
"heCategory": "סדר טהרות"
},
{
…