Μετάβαση στο περιεχόμενο
GET /v1/index

The library table of contents

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/sefaria-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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