/v1/index
The library table of contents
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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": "סדר טהרות"
},
{
…