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

Endpoint catalogue, languages & notes

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

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

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

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

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

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

curl "https://api.oanor.com/tatoeba-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tatoeba-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tatoeba-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/tatoeba-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "note": "Tatoeba is a large, community-built corpus of example sentences in hundreds of languages, each linked to human-contributed translations (not machine translation). /v1/search?q=good morning&from=eng&to=deu = find example sentences containing a word or phrase in the 'from' language and get their translations, optionally restricted to a 'to' language — each result has the sentence id, language, text and a list of translations (language + text); omit from/to to search across all languages. /v1/sentence?id=2258234 = a single sentence with its id, language, text, license and all its translations. Language codes are ISO 639-3 (eng, deu, fra, spa, jpn, cmn, …; see common_languages). Data from Tatoeba (CC-BY 2.0 FR / CC0). A human-translated example-sentence corpus — distinct from dictionaries (definitions), machine translation and word APIs. Ideal for language-learning, vocabulary, flashcard, translation-aid and linguistics tools.",
        "source": "Tatoeba — collaborative example-sentence corpus (tatoeba.org)",
        "endpoints": [
            "/v1/search",
            "/v1/sentence",
            "/v1/meta"
        ],
        "common_languages": {
            "ara": "Arabic",
            "cmn": "Mandarin Chinese",
            "deu": "German",
            "ell": "Greek",
            "eng": "English",
            "fra": "French",
            "ita": "Italian",
            "jpn": "Japanese",
            "kor": "Korean",
            "nld": "Dutch",
            "pol": "Polish",
            "por": "Portuguese",
            "rus": "Russian",
            "spa": "Spanish",
            "tur": "Turkish"
        }
    },
    "meta": {
        "timestamp": "2026-06-01T16:22:59.236Z",
        "request_id": "f6820e8e-91cb-4766-ad25-d7b0d3ce01a0"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}