Ir al contenido
GET /v1/index

The library table of contents

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/sefaria-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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": "סדר טהרות"
                    },
                    {
                     
…