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

Service description & endpoints

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

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

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

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

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

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

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

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

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

{
    "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
}