Vai al contenuto
GET /v1/meta

Service description & endpoints

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/sefaria-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

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